/* ========================
   🌈 Farbvariablen (Music Theme)
======================== */
:root {
  /* Musik-Atmosphäre - Dunkler, wärmer */
  --bg-color: #0f0f0f;
  --text-color: #e8e8e8;
  --rot: #ff3333;
  --dunkelrot: #cc0000;
  --grau: #1a1a1a;
  --hellgrau: #b0b0b0;
  --dunkelgrau: #e8e8e8;
  --blau: #4da6ff;
  --hoverrot: #ff5555;

  /* Mapping für neue Komponenten - Musik-Atmosphäre */
  --text: var(--dunkelgrau);
  --surface: #1a1a1a;     /* dunkler für Karten */
  --card: #151515;        /* Box-Farbe dunkler */
  --line: #333333;        /* Rahmenlinie dunkler */
  --primary: var(--rot);  /* Hauptakzent */
  --accent: var(--blau);  /* Sekundärakzent */
  --radius: 16px;
  --radius-sm: 12px;

  /* 🌟 Schatten & Effekte */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 20px rgba(255, 51, 51, 0.3);
  
  /* 🎭 Animation & Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ========================
   🎯 Landing Page Optimierungen
======================== */

/* AI Disclaimer */
.ai-disclaimer {
  background: var(--surface);
  padding: 15px;
  border-radius: 8px;
  margin: 20px 0;
  border: 1px solid var(--line);
}

/* Language switching utilities */
.hidden {
  display: none !important;
}

.lang-hidden {
  display: none !important;
}

.spotify-iframe {
  border-radius: 12px;
}

.tools-disclaimer {
  /* Spezifische Styles für Tools-Disclaimer können hier hinzugefügt werden */
  margin-bottom: 1rem;
}

/* Utility Classes */
.hidden {
  display: none;
}

/* Ad Landing Page Styles */
.landing-hero {
  padding-top: 40px;
  padding-bottom: 60px;
}

.hero-content-center {
  text-align: center;
}

.hero-badge-center {
  justify-content: center;
}

.hero-title-margin {
  margin-bottom: 20px;
}

.hero-subtitle-margin {
  max-width: 600px;
  margin: 0 auto 30px auto;
}

.hero-stats-center {
  justify-content: center;
  margin-bottom: 40px;
}

.hero-buttons-center {
  justify-content: center;
}

.hero-btn-large {
  font-size: 1.2rem;
  padding: 18px 36px;
  transform: scale(1.05);
}

.hero-btn-medium {
  font-size: 1.1rem;
  padding: 16px 32px;
}

.trust-indicators {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.trust-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--hellgrau);
}

.section-header-center {
  text-align: center;
  margin-bottom: 50px;
}

.features-grid-centered {
  max-width: 800px;
  margin: 0 auto;
}

.feature-card-center {
  text-align: center;
}

.feature-header-center {
  justify-content: center;
}

.feature-tech-center {
  justify-content: center;
}

.final-cta {
  text-align: center;
  margin-top: 60px;
}

.final-cta-note {
  margin-top: 20px;
  color: var(--hellgrau);
  font-size: 0.9rem;
}

.features-section-padding {
  padding: 60px 0;
}

.final-cta-title {
  margin-bottom: 20px;
}

.accent-link {
  color: var(--accent);
}

/* Floating Elements */
.floating-element {
  position: absolute;
  font-size: 2rem;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(odd) {
  animation-delay: 2s;
}

.floating-element-delay-0 { animation-delay: 0s; }
.floating-element-delay-2 { animation-delay: 2s; }
.floating-element-delay-4 { animation-delay: 4s; }
.floating-element-delay-6 { animation-delay: 6s; }

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

/* ========================
   🚧 Work in Progress Pop-up
   ========================
   
   Modernes Pop-up das Benutzer über den Entwicklungsstatus informiert
   Zeigt nach dem ersten Besuch nicht mehr an
   Integriert mit dem Bug-Report-System
======================== */
.wip-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.wip-overlay.show {
  opacity: 1;
  visibility: visible;
}

.wip-modal {
  background: linear-gradient(145deg, var(--card), var(--surface));
  border-radius: var(--radius);
  padding: 40px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  border: 1px solid rgba(255, 51, 51, 0.3);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  transform: scale(0.9);
  transition: transform var(--transition-normal);
}

.wip-overlay.show .wip-modal {
  transform: scale(1);
}

.wip-modal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: var(--radius) var(--radius) 0 0;
}

.wip-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  animation: wipPulse 2s ease-in-out infinite;
  filter: drop-shadow(var(--shadow-glow));
}

@keyframes wipPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.wip-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 15px 0;
  text-shadow: var(--shadow-glow);
}

.wip-text {
  color: var(--hellgrau);
  line-height: 1.6;
  margin: 0 0 30px 0;
  font-size: 1.1rem;
}

.wip-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.wip-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition-normal);
  border: 2px solid transparent;
  cursor: pointer;
}

.wip-btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--dunkelrot));
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.wip-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.wip-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.wip-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.wip-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: var(--hellgrau);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: all var(--transition-normal);
}

.wip-close:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

/* ========================
   ✨ Body-Grundlayout
======================== */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.55;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
}

/* Entferne alle Standard-Margins und Paddings */
html {
  margin: 0;
  padding: 0;
}

/* Entferne den weißen Balken am oberen Rand */
body {
  margin: 0 !important;
  padding: 0 !important;
}

/* Stelle sicher, dass der Header direkt am oberen Rand beginnt */
.site-header {
  margin-top: 0 !important;
  top: 0 !important;
}
a { color: var(--blau); text-underline-offset: 2px; }

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus Styles für bessere Accessibility */
a:focus, button:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

main { 
  padding-top: 0; 
  margin: 0;
}
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 16px; }

article.tool-wrapper { max-width: 700px; margin: 3rem auto 0 auto; }

/* Sprach-Toggle */
#langToggle { padding: 0; background: none; border: none; }
#langToggle img { box-shadow: none !important; background: none; border: none; display: block; }

/* ========================
   🧱 Header & Navigation
======================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15, 15, 15, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  margin: 0;
  padding: 0;
}

.site-header .topbar {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.brand:hover {
  transform: scale(1.02);
}

.brand img {
  height: 40px;
  width: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.brand h1 {
  margin: 0;
  font-size: 20px;
  color: var(--rot);
  text-shadow: 0 0 10px rgba(255, 51, 51, 0.3);
}

.brand p {
  margin: 0;
  font-size: 12px;
  color: var(--hellgrau);
}

/* Navigation */
.main-nav {
  padding: 8px 16px 12px;
  border-bottom: 0;
  background: transparent;
}

.nav-row {
  display: flex;
  align-items: center;
  gap: 8px; /* Reduziert von 10px */
  flex-wrap: nowrap; /* Verhindert Umbruch auf Desktop */
  justify-content: space-between; /* Bessere Verteilung */
  max-width: 1200px; /* Max-Breite für sehr breite Bildschirme */
  margin: 0 auto;
  padding: 0 20px;
}

.nav-row a {
  padding: 8px 12px; /* Reduziert von default */
  white-space: nowrap;
  font-size: 0.9rem; /* Etwas kleiner für mehr Items */
}

/* Navigation Links */
.main-nav a,
.main-nav button.theme-toggle,
.nav-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 12px;
  color: var(--text-color);
  text-decoration: none;
  background: transparent;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
}

.main-nav a:hover,
.main-nav button.theme-toggle:hover,
.nav-more:hover {
  background: rgba(255, 51, 51, 0.1);
  border-color: rgba(255, 51, 51, 0.3);
  transform: translateY(-1px);
  color: var(--rot);
}

/* Aktiver Link */
.main-nav a.active {
  background: rgba(255, 51, 51, 0.15);
  border-color: rgba(255, 51, 51, 0.4);
  color: var(--rot);
}

/* Sprachbutton */
#langToggle {
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: all 0.3s ease;
}

#langToggle:hover {
  border-color: var(--rot);
  transform: scale(1.05);
}

#langToggle img {
  display: block;
  width: 24px;
  height: 16px;
  border-radius: 8px;
}

/* Burger Button */
#menu-toggle {
  display: none;
  background: transparent;
  color: var(--text-color);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#menu-toggle:hover {
  background: rgba(255, 51, 51, 0.1);
  border-color: var(--rot);
  color: var(--rot);
}

/* Dropdown Navigation */
.nav-secondary {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 8px;
  padding: 10px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.nav-secondary a {
  padding: 8px 10px;
  border-radius: 10px;
  display: block;
  margin-bottom: 5px;
}

.nav-secondary a:hover {
  background: rgba(255, 51, 51, 0.1);
}

.nav-secondary.open {
  display: flex;
  flex-direction: column;
}

/* Mehr-Dropdown Button */
.nav-more {
  cursor: pointer;
}

/* ========================
   🎛️ Buttons (global)
======================== */
.btn{
  display:inline-flex; align-items:center; gap:8px;
  padding:12px 16px; border-radius:14px;
  text-decoration:none; border:1px solid var(--line);
  background: var(--card); color: var(--text);
  transition: all 0.3s ease;
  cursor:pointer;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s;
}
.btn:hover::before {
  left: 100%;
}
.btn:hover{
  transform:translateY(-2px); 
  box-shadow:0 10px 30px rgba(0,0,0,.4);
  border-color: var(--primary);
}
.btn.primary{
  background: linear-gradient(135deg, var(--primary), #ff5555); 
  border-color: var(--primary); 
  color:#fff; 
  font-weight:700;
  box-shadow: 0 5px 15px rgba(255, 51, 51, 0.3);
}
.btn.primary:hover {
  box-shadow: 0 8px 25px rgba(255, 51, 51, 0.5);
  transform: translateY(-3px);
}
.btn.ghost{background:transparent}

/* ========================
   📰 Content-Boxen / Blog / Home
======================== */
.tool-box, .form-box, .blog-post, .home-box, .supporter-box {
  background: linear-gradient(145deg, var(--card), #1a1a1a);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  padding: 30px;
  margin: 40px auto;
  max-width: 900px;
  border: 1px solid var(--line);
  position: relative;
}
.tool-box::before, .form-box::before, .blog-post::before, .home-box::before, .supporter-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 16px 16px 0 0;
}
.form-box, .blog-post, .home-box { max-width: 700px; }
.supporter-box { max-width: 1000px; }

.blog-post h3, .home-box h3 { color: var(--rot); margin-top: 0; text-shadow: 0 0 10px rgba(255, 51, 51, 0.3); }
.blog-post:hover { transform: scale(1.02); transition: transform 0.3s ease; }
.blog-post p, .home-box ul li { line-height: 1.6; }
.blog-post a, .home-box a { color: var(--blau); text-decoration: none; }
.blog-post a:hover, .home-box a:hover { text-decoration: underline; }
.blog-post:not(:last-child) { margin-bottom: 40px; border-bottom: 1px solid var(--line); }
.home-box ul { list-style: none; padding: 0; margin-top: 20px; }

.tool-ausloser p { line-height: 1.6; margin-bottom: 1em; }
.tool-description { font-size: 1.05rem; color: var(--hellgrau); }
.tool-ausloser h1 { color: #ff0080; font-size: 2rem; margin-top: 0; text-shadow: 0 0 15px rgba(255, 0, 128, 0.4); }
.tool-ausloser span { font-size: 0.9rem; color: var(--hellgrau); margin-left: 10px; }

.tool-wrapper {
  margin-bottom: 3rem;
  padding: 1.5rem;
  background: linear-gradient(145deg, var(--surface), #151515);
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  border: 1px solid var(--line);
}

/* ========================
   🎵 Hero Section - Hauptbereich
======================== */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  margin: 0;
}

/* Subtiler Musik-Hintergrund-Effekt */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 51, 51, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(77, 166, 255, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
  pointer-events: none;
}

/* Hero Content */
.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

/* Haupttitel - Kraftvoll und musikalisch */
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 24px 0;
  color: #ffffff;
  text-shadow: 0 0 30px rgba(255, 51, 51, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, #ff3333 50%, #4da6ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

/* Untertitel - Emotional und persönlich */
.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  line-height: 1.6;
  color: #b0b0b0;
  margin: 0 0 40px 0;
  font-weight: 400;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Buttons Container */
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }
}

/* Hero Buttons - Moderne, animierte Buttons */
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-width: 180px;
  justify-content: center;
  border: 2px solid transparent;
}

/* Glanz-Effekt für alle Buttons */
.hero-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.hero-btn:hover::before {
  left: 100%;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
}

/* Primärer Button - Rot */
.hero-btn-primary {
  background: linear-gradient(135deg, #ff3333 0%, #cc0000 100%);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(255, 51, 51, 0.3);
  border-color: #ff3333;
}

.hero-btn-primary:hover {
  box-shadow: 0 12px 35px rgba(255, 51, 51, 0.5);
  background: linear-gradient(135deg, #ff5555 0%, #ff3333 100%);
}

/* Sekundärer Button - Weiß/Silber */
.hero-btn-secondary {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.1);
}

/* Akzent Button - Blau */
.hero-btn-accent {
  background: linear-gradient(135deg, #4da6ff 0%, #0066cc 100%);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(77, 166, 255, 0.3);
  border-color: #4da6ff;
}

.hero-btn-accent:hover {
  box-shadow: 0 12px 35px rgba(77, 166, 255, 0.5);
  background: linear-gradient(135deg, #66b3ff 0%, #4da6ff 100%);
}

/* Button Icons */
.btn-icon {
  font-size: 1.2rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.btn-text {
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Rechte Seite: Video */
.hero-music-video {
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-container {
  width: 100%;
  max-width: 500px;
  text-align: center;
}

/* Video Titel */
.video-title {
  font-size: 1.1rem;
  color: #ffffff;
  margin: 0 0 20px 0;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* YouTube Container - Angepasst für das neue Design */
.hero-music-video .yt-wrap {
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  position: relative;
}

.hero-music-video .yt-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 51, 51, 0.1), rgba(77, 166, 255, 0.1));
  pointer-events: none;
  z-index: 1;
}

/* Responsive Anpassungen */
@media (max-width: 1023px) {
  .hero-music {
    min-height: 0;
    padding: 60px 0 40px;
  }
  
  .hero-music-video {
    order: -1;
    margin-bottom: 40px;
  }
  
  .video-container {
    max-width: 400px;
  }
}

@media (max-width: 767px) {
  .hero-music {
    padding: 40px 0 30px;
  }
  
  .hero-music-cta {
    gap: 12px;
  }
  
  .btn-music {
    padding: 14px 20px;
    min-width: 140px;
    font-size: 0.95rem;
  }
  
  .video-container {
    max-width: 100%;
  }
}

/* Pulsierender Hover-Effekt für Buttons */
@keyframes buttonPulse {
  0% {
    box-shadow: 0 8px 25px rgba(255, 51, 51, 0.3);
  }
  50% {
    box-shadow: 0 8px 25px rgba(255, 51, 51, 0.5);
  }
  100% {
    box-shadow: 0 8px 25px rgba(255, 51, 51, 0.3);
  }
}

.btn-music-primary:hover {
  animation: buttonPulse 2s infinite;
}

/* ========================
   �� Features Section - Feature-Grid
======================== */
.features-section {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

/* Subtiler Hintergrund-Effekt */
.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(77, 166, 255, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 51, 51, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

/* Feature Cards */
.feature-card {
  background: linear-gradient(145deg, #151515, #1a1a1a);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4da6ff, #ff3333);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  border-color: rgba(77, 166, 255, 0.3);
}

/* Feature Icon */
.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 20px rgba(77, 166, 255, 0.5));
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}

/* Feature Content */
.feature-card h3 {
  color: #ffffff;
  font-size: 1.4rem;
  margin: 0 0 15px 0;
  font-weight: 600;
  text-shadow: 0 0 15px rgba(77, 166, 255, 0.3);
}

.feature-card p {
  color: #b0b0b0;
  line-height: 1.6;
  margin: 0 0 25px 0;
  font-size: 1rem;
  flex-grow: 1;
}

/* Feature Button */
.feature-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  background: linear-gradient(135deg, rgba(77, 166, 255, 0.1) 0%, rgba(77, 166, 255, 0.05) 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(77, 166, 255, 0.2);
  position: relative;
  overflow: hidden;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.feature-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(77, 166, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.feature-btn:hover::before {
  left: 100%;
}

.feature-btn:hover {
  background: linear-gradient(135deg, rgba(77, 166, 255, 0.2) 0%, rgba(77, 166, 255, 0.1) 100%);
  border-color: rgba(77, 166, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(77, 166, 255, 0.3);
}

.btn-arrow {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.feature-btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* Responsive Anpassungen für Features */
@media (max-width: 768px) {
  .features-section {
    padding: 60px 0 40px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-card {
    padding: 30px 25px;
    min-height: 250px;
  }
  
  .feature-icon {
    font-size: 2.5rem;
  }
  
  .feature-card h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .features-title {
    font-size: 1.8rem;
  }
  
  .features-subtitle {
    font-size: 1.1rem;
  }
  
  .feature-card {
    padding: 25px 20px;
    min-height: 220px;
  }
  
  .feature-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}

/* ========================
   🧩 Cards (Alter Code - wird ersetzt)
======================== */
.cards{ display:grid; gap:12px; }
@media (min-width:700px){ .cards{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:1000px){ .cards{ grid-template-columns:repeat(4,1fr); } }
.card{
  background: var(--surface);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px; min-height:120px;
  display:flex; flex-direction:column; gap:8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.card:hover::before {
  transform: scaleX(1);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  border-color: var(--primary);
}
.card h3{ margin:0; font-size:18px; color: var(--text-color); }
.muted{ color:var(--hellgrau); }
.bullets{ margin:10px 0 0; padding-left:18px; }

/* ========================
   💛 Support Section - Ko-fi Sektion
======================== */
.support-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #151515 50%, #0a0a0a 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

/* Subtiler Hintergrund-Effekt */
.support-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(255, 51, 51, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(77, 166, 255, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* Support Content */
.support-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.support-text {
  font-size: 1.2rem;
  color: #b0b0b0;
  margin: 0 0 30px 0;
  font-style: italic;
  line-height: 1.6;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Support Button */
.support-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #ff3333 0%, #cc0000 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 51, 51, 0.3);
  border: 2px solid #ff3333;
  position: relative;
  overflow: hidden;
}

.support-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.support-btn:hover::before {
  left: 100%;
}

.support-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 51, 51, 0.5);
  background: linear-gradient(135deg, #ff5555 0%, #ff3333 100%);
}

/* ========================
   📝 Kontaktformular
======================== */
.kontakt-formular {
  display: flex; flex-direction: column; gap: 15px; margin-top: 30px;
}
.kontakt-formular input,
.kontakt-formular textarea {
  background-color: var(--surface);
  color: var(--text-color);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  font-size: 1em;
}
.kontakt-formular input:focus,
.kontakt-formular textarea:focus { outline: none; border-color: var(--rot); }
.kontakt-formular button {
  background-color: var(--dunkelrot);
  color: #fff; border: none; padding: 12px;
  border-radius: 8px; font-weight: bold; cursor: not-allowed;
}

/* ========================
   🧮 Supporter-Tabellen
======================== */
.supporter-table {
  width: 100%; border-collapse: collapse; margin-bottom: 2rem;
  background-color: var(--card); color: var(--text-color);
  border: 1px solid var(--line); border-radius: 8px; overflow: hidden;
}
.supporter-table th, .supporter-table td {
  padding: 0.6rem 1rem; text-align: left; border-bottom: 1px solid var(--line);
}
.supporter-table thead { background-color: var(--surface); }
.supporter-table tr:nth-child(even) { background-color: #f8f8f8; }

.supporter-box h2 { margin: 0 0 20px; color: var(--text-color); }
.supporter-box table { width: 100%; border-collapse: collapse; margin-top: 10px; }
.supporter-box th, .supporter-box td {
  padding: 12px; border: 1px solid var(--line); text-align: center; font-size: 16px;
}
.supporter-box tr.highlight {
  outline: 3px solid gold; font-weight: bold; background-color: var(--surface);
}
.supporter-box tbody tr:hover { background-color: var(--surface); transition: background-color 0.2s; }

/* ========================
   📄 Footer Styles
======================== */
footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #0d0d0d 100%);
  padding: 30px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 51, 51, 0.5), transparent);
}

.footer-content {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}

.footer-copyright {
  margin-bottom: 20px;
}

.footer-copyright p {
  color: #888888;
  margin: 0;
  font-size: 0.9rem;
}

.footer-copyright a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-copyright a:hover {
  color: var(--rot);
}

/* Social Links */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #b0b0b0;
  transition: all 0.3s ease;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid transparent;
  min-width: 70px;
}

.social-link:hover {
  color: #ffffff;
  background: rgba(255, 51, 51, 0.1);
  border-color: rgba(255, 51, 51, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 51, 51, 0.2);
}

.social-icon {
  font-size: 1.3rem;
  filter: drop-shadow(0 0 10px rgba(255, 51, 51, 0.3));
}

.social-text {
  font-size: 0.8rem;
  font-weight: 500;
}

/* ========================
   📱 Responsive Navigation
======================== */
@media (max-width: 899px) {
  #menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  
  .main-nav {
    display: none;
    flex-direction: column;
    text-align: center;
    padding: 20px 16px;
    background: rgba(15, 15, 15, 0.98);
    border-top: 1px solid var(--line);
  }
  
  .main-nav.show {
    display: flex;
  }
  
  .nav-row {
    flex-direction: column;
    gap: 15px;
  }
  
  .nav-secondary {
    position: static;
    transform: none;
    box-shadow: none;
    border: 0;
    display: flex;
    flex-direction: column;
    padding: 15px 0 0;
    margin-top: 15px;
    border-top: 1px solid var(--line);
  }
  
  .nav-more {
    display: none;
  }
  
  .main-nav a,
  .main-nav button.theme-toggle {
    padding: 12px 16px;
    font-size: 1rem;
    justify-content: center;
  }
}

@media (min-width: 900px) {
  .main-nav {
    justify-content: center;
  }
  
  .nav-row {
    justify-content: center;
  }
}

/* Extra: falls du irgendwo noch .responsive-iframe nutzt */
.responsive-iframe {
  position: relative; width: 100%; padding-bottom: 56.25%; height: 0;
  overflow: hidden; border-radius: 12px; margin-top: 10px;
}
.responsive-iframe iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: none; border-radius: 12px;
}

/* ===== Header Bar – Modern, unified ===== */

/* ===== Navigation – Ghost Chips ===== */
.release-band .rb-hot {
  margin-left: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  /* Fallback für ältere Browser - rgba statt color-mix */
  background: rgba(255, 51, 51, 0.3);
  border: 1px solid rgba(255, 51, 51, 0.5);
  font-weight: 700;
}

/* Moderne Browser mit color-mix */
@supports (color: color-mix(in oklab, red, blue)) {
  .release-band .rb-hot {
    background: color-mix(in oklab, var(--primary) 30%, transparent);
    border: 1px solid color-mix(in oklab, var(--primary) 50%, var(--line));
  }
}
/* ===== Minimal Header/Nav – kompakt & modern ===== */
:root { 
  --bg-accent: radial-gradient(1200px 600px at 10% -10%, rgba(255,51,51,0.1), transparent 60%),
  radial-gradient(1000px 500px at 110% 10%, rgba(77,166,255,0.08), transparent 60%); 
}
body { 
  background: var(--bg-color), var(--bg-accent);
  background-attachment: fixed;
}



/* ========================
   💛 Support Section - Stimmungsvolle Unterstützung
======================== */
.support-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #151515 50%, #0a0a0a 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

/* Subtiler Hintergrund-Effekt */
.support-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(255, 51, 51, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(77, 166, 255, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* Support Header */
.support-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.support-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 20px 0;
  text-shadow: 0 0 30px rgba(255, 51, 51, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, #ff3333 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.support-subtitle {
  font-size: 1.2rem;
  color: #b0b0b0;
  margin: 0;
  font-style: italic;
  line-height: 1.6;
}

/* Ko-fi Container */
.kofi-container {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.kofi-card {
  background: linear-gradient(145deg, #151515, #1a1a1a);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.kofi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff3333, #4da6ff);
  border-radius: 20px 20px 0 0;
}

/* Ko-fi Content */
.kofi-content {
  text-align: center;
}

.kofi-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 20px rgba(255, 51, 51, 0.5));
}

.kofi-content h3 {
  font-size: 1.5rem;
  color: #ffffff;
  margin: 0 0 15px 0;
  font-weight: 700;
}

.kofi-content p {
  color: #b0b0b0;
  line-height: 1.6;
  margin: 0 0 30px 0;
  font-size: 1.1rem;
}

/* Ko-fi Button */
.kofi-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #ff3333 0%, #cc0000 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 51, 51, 0.3);
  border: 2px solid #ff3333;
  position: relative;
  overflow: hidden;
}

.kofi-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.kofi-button:hover::before {
  left: 100%;
}

.kofi-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 51, 51, 0.5);
  background: linear-gradient(135deg, #ff5555 0%, #ff3333 100%);
}

.kofi-icon-btn {
  font-size: 1.2rem;
}

/* Ko-fi Visual - Music Waves */
.kofi-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}

.music-waves {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 80px;
}

.wave {
  width: 8px;
  background: linear-gradient(to top, #ff3333, #4da6ff);
  border-radius: 4px;
  animation: waveAnimation 1.5s ease-in-out infinite;
}

.wave:nth-child(1) { height: 40px; animation-delay: 0s; }
.wave:nth-child(2) { height: 60px; animation-delay: 0.2s; }
.wave:nth-child(3) { height: 80px; animation-delay: 0.4s; }
.wave:nth-child(4) { height: 60px; animation-delay: 0.6s; }
.wave:nth-child(5) { height: 40px; animation-delay: 0.8s; }

@keyframes waveAnimation {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.5); }
}

/* Support Options */
.support-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

.support-card {
  background: linear-gradient(145deg, #151515, #1a1a1a);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.support-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff3333, #4da6ff);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.support-card:hover::before {
  transform: scaleX(1);
}

.support-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 51, 51, 0.3);
}

.support-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 15px rgba(255, 51, 51, 0.4));
}

.support-card h4 {
  color: #ffffff;
  font-size: 1.3rem;
  margin: 0 0 15px 0;
  font-weight: 600;
}

.support-card p {
  color: #b0b0b0;
  margin: 0;
  line-height: 1.5;
}

/* ========================
   💖 Thank You Section - Emotionaler Abschluss
======================== */
.thank-you-section {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.thank-you-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 51, 51, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(77, 166, 255, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.thank-you-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.thank-you-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #ffffff;
  margin: 0 0 20px 0;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(255, 51, 51, 0.3);
}

.thank-you-text {
  font-size: 1.1rem;
  color: #b0b0b0;
  line-height: 1.6;
  margin: 0 0 30px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.thank-you-hearts {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 1.5rem;
  animation: heartBeat 2s ease-in-out infinite;
}

.thank-you-hearts span {
  animation: float 3s ease-in-out infinite;
}

.thank-you-hearts span:nth-child(1) { animation-delay: 0s; }
.thank-you-hearts span:nth-child(2) { animation-delay: 0.5s; }
.thank-you-hearts span:nth-child(3) { animation-delay: 1s; }
.thank-you-hearts span:nth-child(4) { animation-delay: 1.5s; }
.thank-you-hearts span:nth-child(5) { animation-delay: 2s; }

@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* ========================
   🎵 Music Footer - Musikalischer Abschluss
======================== */
.music-footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #0d0d0d 100%);
  padding: 40px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.music-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 51, 51, 0.5), transparent);
}

/* Social Links */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #b0b0b0;
  transition: all 0.3s ease;
  padding: 15px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid transparent;
  min-width: 80px;
}

.social-link:hover {
  color: #ffffff;
  background: rgba(255, 51, 51, 0.1);
  border-color: rgba(255, 51, 51, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 51, 51, 0.2);
}

.social-icon {
  font-size: 1.5rem;
  filter: drop-shadow(0 0 10px rgba(255, 51, 51, 0.3));
}

.social-text {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Copyright */
.footer-copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
  color: #888888;
  margin: 0 0 15px 0;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-links a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ff3333;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .support-section {
    padding: 60px 0 40px;
  }
  
  .kofi-card {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
  }
  
  .support-options {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .footer-social {
    gap: 20px;
  }
  
  .social-link {
    min-width: 70px;
    padding: 12px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .support-title {
    font-size: 1.8rem;
  }
  
  .kofi-content h3 {
    font-size: 1.3rem;
  }
  
  .kofi-button {
    padding: 14px 24px;
    font-size: 1rem;
  }
  
  .thank-you-title {
    font-size: 1.6rem;
  }
  
  .thank-you-hearts {
    gap: 15px;
    font-size: 1.3rem;
  }
}

/* ========================
   💛 Support: Pills + Goal-Bar (Alter Code - wird ersetzt)
======================== */

/* ========================
   📝 Blog-System Styles
======================== */
.blog-post {
  background: linear-gradient(145deg, #151515, #1a1a1a);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.blog-post:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 51, 51, 0.2);
}

.post-header {
  margin-bottom: 20px;
}

.post-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 15px 0;
  line-height: 1.3;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #b0b0b0;
  font-size: 0.9rem;
}

.post-meta time {
  color: var(--accent);
  font-weight: 600;
}

.post-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.post-tags .tag {
  background: rgba(255, 51, 51, 0.1);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(255, 51, 51, 0.2);
}

.post-excerpt {
  margin-bottom: 20px;
}

.post-excerpt p {
  color: #b0b0b0;
  line-height: 1.6;
  font-size: 1rem;
}

.post-content {
  margin: 20px 0;
  color: #b0b0b0;
  line-height: 1.7;
}

.post-content p {
  margin-bottom: 15px;
}

/* Blog Actions */
.post-actions {
  display: flex;
  gap: 12px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.post-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.post-actions .btn:hover {
  background: rgba(255, 51, 51, 0.1);
  border-color: rgba(255, 51, 51, 0.3);
  transform: translateY(-2px);
}

.post-actions .btn.liked {
  background: rgba(255, 51, 51, 0.2);
  border-color: rgba(255, 51, 51, 0.5);
}

.post-actions .btn.active {
  background: rgba(255, 51, 51, 0.15);
  border-color: rgba(255, 51, 51, 0.4);
}

/* Comments Section */
.comments-section {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.comments-section h3 {
  color: #ffffff;
  font-size: 1.3rem;
  margin: 0 0 20px 0;
  font-weight: 600;
}

.comments-list {
  margin-bottom: 25px;
}

.comment {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.comment-header strong {
  color: #ffffff;
  font-weight: 600;
}

.comment-header time {
  color: #b0b0b0;
  font-size: 0.8rem;
}

.comment-content {
  color: #b0b0b0;
  line-height: 1.5;
}

.no-comments {
  text-align: center;
  color: #b0b0b0;
  font-style: italic;
  padding: 20px;
}

/* Comment Form */
.comment-form {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.comment-form .form-group {
  margin-bottom: 15px;
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px;
  color: #ffffff;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.comment-form input::placeholder,
.comment-form textarea::placeholder {
  color: #b0b0b0;
}

.comment-form input:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.1);
}

.comment-form textarea {
  min-height: 80px;
  resize: vertical;
}

.comment-form .btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.comment-form .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 51, 51, 0.3);
}

/* Notifications */
@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

.notification {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Blog */
@media (max-width: 768px) {
  .blog-post {
    padding: 20px;
    margin-bottom: 20px;
  }
  
  .post-title {
    font-size: 1.5rem;
  }
  
  .post-actions {
    flex-direction: column;
    gap: 10px;
  }
  
  .post-actions .btn {
    justify-content: center;
  }
  
  .comment-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}

/* ========================
   🎨 Tools Grid & Cards
======================== */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.tool-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.tool-card:hover {
  transform: translateY(-5px);
  border-color: rgba(77, 166, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tool-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 15px rgba(77, 166, 255, 0.4));
}

.tool-card h4 {
  color: #ffffff;
  margin: 0 0 10px 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.tool-card p {
  color: #b0b0b0;
  margin: 0;
  line-height: 1.5;
  font-size: 0.9rem;
}

/* ========================
   📧 Kontaktformular Styles
======================== */
.kontakt-formular {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.kontakt-formular input,
.kontakt-formular textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 15px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.kontakt-formular input:focus,
.kontakt-formular textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(255, 51, 51, 0.1);
}

.kontakt-formular textarea {
  resize: vertical;
  min-height: 120px;
}

.kontakt-formular button {
  background: linear-gradient(135deg, var(--primary), #ff5555);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 51, 51, 0.3);
}

.kontakt-formular button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 51, 51, 0.4);
}

.kontakt-formular button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.privacy-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #b0b0b0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.privacy-label input[type="checkbox"] {
  margin-top: 2px;
}

.privacy-label a {
  color: var(--accent);
  text-decoration: underline;
}

/* Form Feedback */
.update-hinweis {
  margin-top: 15px;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
}

.update-hinweis.success {
  background: rgba(0, 204, 102, 0.1);
  border: 1px solid rgba(0, 204, 102, 0.3);
  color: #00cc66;
}

.update-hinweis.error {
  background: rgba(255, 68, 68, 0.1);
  border: 1px solid rgba(255, 68, 68, 0.3);
  color: #ff4444;
}

/* ========================
   🎵 Spotify Embed Styles
======================== */
.spotify-embed {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ========================
   🎯 CTA Section Styles
======================== */
.cta-section {
  margin-top: 30px;
  text-align: center;
}

.cta-section p {
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 1.1rem;
}

.cta-section .btn {
  margin: 0 10px 10px 0;
}

/* ========================
   🎵 Spotify Section Styles
======================== */
.spotify-section {
  margin-top: 60px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.spotify-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #ffffff;
  margin: 0 0 20px 0;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(77, 166, 255, 0.3);
}

.spotify-section p {
  color: #b0b0b0;
  font-size: 1.1rem;
  margin: 0 0 30px 0;
  line-height: 1.6;
}

.spotify-embed {
  margin-top: 20px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

/* ========================
   📱 Responsive Anpassungen
======================== */
@media (max-width: 768px) {
  .blog-post {
    padding: 20px;
  }
  
  .post-header h3 {
    font-size: 1.3rem;
  }
  
  .post-actions {
    flex-direction: column;
    gap: 10px;
  }
  
  .btn-like, .btn-comment, .btn-expand {
    justify-content: center;
  }
  
  .tools-grid {
    grid-template-columns: 1fr;
  }
  
  .tool-card {
    padding: 20px;
  }
  
  .kontakt-formular {
    gap: 15px;
  }
  
  .kontakt-formular input,
  .kontakt-formular textarea {
    padding: 12px;
  }
  
  .cta-section .btn {
    display: block;
    margin: 10px 0;
  }
}

@media (max-width: 480px) {
  .post-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .tags {
    gap: 6px;
  }
  
  .tag {
    font-size: 0.75rem;
    padding: 3px 10px;
  }
  
  .comment-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ========================
   💛 Modern Support Section
======================== */
.support-header {
  text-align: center;
  margin-bottom: 30px;
}

.support-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #ffffff;
  margin: 0 0 15px 0;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(255, 51, 51, 0.3);
}

.support-header p {
  color: #b0b0b0;
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.6;
}

.support-options {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.support-btn-secondary {
  background: linear-gradient(135deg, rgba(77, 166, 255, 0.1), rgba(77, 166, 255, 0.05));
  border-color: rgba(77, 166, 255, 0.3);
  color: #ffffff;
}

.support-btn-secondary:hover {
  background: linear-gradient(135deg, rgba(77, 166, 255, 0.2), rgba(77, 166, 255, 0.1));
  border-color: rgba(77, 166, 255, 0.5);
  box-shadow: 0 12px 35px rgba(77, 166, 255, 0.3);
}

/* ========================
   📝 Blog Loading & Styles
======================== */
.loading-spinner {
  text-align: center;
  padding: 60px 20px;
  color: #b0b0b0;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid var(--rot);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Blog Posts in Features Grid */
#blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.blog-post {
  background: linear-gradient(145deg, #151515, #1a1a1a);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
}

.blog-post::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.blog-post:hover::before {
  transform: scaleX(1);
}

.blog-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 51, 51, 0.3);
}

/* Blog Post Header */
.blog-post .post-header {
  margin-bottom: 20px;
}

.blog-post h3 {
  color: #ffffff;
  font-size: 1.4rem;
  margin: 0 0 15px 0;
  font-weight: 700;
  text-shadow: 0 0 15px rgba(255, 51, 51, 0.3);
}

.blog-post .post-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.blog-post .post-meta time {
  color: var(--hellgrau);
  font-size: 0.9rem;
}

/* Blog Tags */
.blog-post .tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.blog-post .tag {
  background: rgba(77, 166, 255, 0.1);
  color: #4da6ff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(77, 166, 255, 0.3);
  transition: all 0.3s ease;
}

.blog-post .tag:hover {
  background: rgba(77, 166, 255, 0.2);
  transform: translateY(-1px);
}

/* Blog Content */
.blog-post .post-excerpt p {
  color: #b0b0b0;
  line-height: 1.6;
  margin: 0 0 20px 0;
  font-size: 1rem;
}

/* Blog Actions */
.blog-post .post-actions {
  display: flex;
  gap: 15px;
  margin-top: auto;
  flex-wrap: wrap;
}

.blog-post .btn-like, 
.blog-post .btn-comment, 
.blog-post .btn-expand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.blog-post .btn-like:hover, 
.blog-post .btn-comment:hover, 
.blog-post .btn-expand:hover {
  background: rgba(255, 51, 51, 0.1);
  border-color: rgba(255, 51, 51, 0.3);
  transform: translateY(-2px);
}

.blog-post .btn-like.liked {
  background: rgba(255, 51, 51, 0.2);
  border-color: rgba(255, 51, 51, 0.5);
}

/* Responsive Blog */
@media (max-width: 768px) {
  #blog-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .blog-post {
    padding: 20px;
    min-height: 250px;
  }
  
  .blog-post h3 {
    font-size: 1.2rem;
  }
  
  .blog-post .post-actions {
    flex-direction: column;
    gap: 10px;
  }
}

/* ========================
   📧 Contact Form Section
======================== */
.contact-form-section {
  margin-top: 80px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.contact-form-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #ffffff;
  margin: 0 0 15px 0;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(255, 51, 51, 0.3);
}

.contact-form-section p {
  color: #b0b0b0;
  font-size: 1.1rem;
  margin: 0 0 40px 0;
  line-height: 1.6;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(145deg, #151515, #1a1a1a);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 20px 20px 0 0;
}

/* Form Inputs */
.kontakt-formular {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kontakt-formular input,
.kontakt-formular textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px;
  color: #ffffff;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.kontakt-formular input::placeholder,
.kontakt-formular textarea::placeholder {
  color: #b0b0b0;
}

.kontakt-formular input:focus,
.kontakt-formular textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.1);
}

.kontakt-formular button {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.kontakt-formular button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 51, 51, 0.3);
}

/* ========================
   ⚖️ Legal Content Styles
======================== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-section {
  text-align: left;
}

.legal-section h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #ffffff;
  margin: 0 0 30px 0;
  font-weight: 700;
  text-shadow: 0 0 15px rgba(255, 51, 51, 0.3);
  text-align: center;
}

.legal-card {
  background: linear-gradient(145deg, #151515, #1a1a1a);
  border-radius: 16px;
  padding: 25px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.legal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.legal-card:hover::before {
  transform: scaleX(1);
}

.legal-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 51, 51, 0.3);
}

.legal-card h4 {
  color: #ffffff;
  font-size: 1.2rem;
  margin: 0 0 15px 0;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(255, 51, 51, 0.3);
}

.legal-card p {
  color: #b0b0b0;
  line-height: 1.6;
  margin: 0 0 10px 0;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card address {
  color: #b0b0b0;
  line-height: 1.6;
  font-style: normal;
  margin: 0;
}

.legal-card a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-card a:hover {
  color: var(--rot);
  text-decoration: underline;
}

/* Responsive Legal */
@media (max-width: 768px) {
  .legal-content {
    margin: 0 16px;
  }
  
  .legal-card {
    padding: 20px;
  }
  
  .legal-card h4 {
    font-size: 1.1rem;
  }
}

/* Privacy Label & Links */
.privacy-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 15px 0;
  color: #b0b0b0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.privacy-label input[type="checkbox"] {
  margin: 0;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.privacy-label span {
  flex: 1;
}

.privacy-label span a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
  pointer-events: auto;
  cursor: pointer;
}

.privacy-label span a:hover {
  color: var(--rot);
  text-decoration: underline;
}

/* Loading Spinner */
.loading-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-spinner p {
  color: #b0b0b0;
  font-size: 1rem;
  margin: 0;
}

/* Responsive Blog */
@media (max-width: 768px) {
  #blog-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .blog-post {
    padding: 20px;
    min-height: 250px;
  }
  
  .blog-post h3 {
    font-size: 1.2rem;
  }
  
  .blog-post .post-actions {
    flex-direction: column;
    gap: 10px;
  }
}

/* ========================
   💬 Erweiterte Kommentar-Features
======================== */

/* Kommentar-Sektion */
.comments-section {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.comments-section h3 {
  color: var(--text-color);
  font-size: 1.3rem;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 51, 51, 0.2);
}

/* Kommentar-Liste */
.comments-list {
  margin-bottom: 20px;
}

.comment {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 15px;
  transition: all var(--transition-normal);
}

.comment:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 51, 51, 0.3);
  transform: translateY(-2px);
}

.comment-reply {
  margin-left: 30px;
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.05);
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 10px;
}

.comment-header strong {
  color: var(--primary);
  font-weight: 600;
}

.comment-header time {
  color: var(--hellgrau);
  font-size: 0.85rem;
  font-style: italic;
}

.comment-content {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Kommentar-Aktionen */
.comment-actions {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-like-comment {
  background: rgba(255, 51, 51, 0.1);
  border: 1px solid rgba(255, 51, 51, 0.3);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 60px;
  justify-content: center;
}

.btn-like-comment:hover {
  background: rgba(255, 51, 51, 0.2);
  border-color: var(--primary);
  transform: translateY(-1px);
}

.btn-like-comment.liked {
  background: rgba(255, 51, 51, 0.3);
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(255, 51, 51, 0.3);
}

.btn-like-comment .like-count {
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

.btn-reply {
  background: rgba(77, 166, 255, 0.1);
  border: 1px solid rgba(77, 166, 255, 0.3);
  color: var(--accent);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-reply:hover {
  background: rgba(77, 166, 255, 0.2);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.btn-toggle-replies {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-color);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-toggle-replies:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
}

.toggle-icon {
  font-size: 0.8rem;
  transition: transform var(--transition-normal);
}

.btn-toggle-replies:hover .toggle-icon {
  transform: scale(1.1);
}

.reply-count {
  color: var(--hellgrau);
  font-size: 0.8rem;
}

/* Antworten-Sektion */
.replies-section {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.replies-list {
  margin-bottom: 20px;
}

/* Antwort-Formular */
.reply-form-container {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.reply-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reply-form .form-group {
  display: flex;
  flex-direction: column;
}

.reply-form input,
.reply-form textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px;
  color: var(--text-color);
  font-size: 0.9rem;
  transition: all var(--transition-normal);
}

.reply-form input:focus,
.reply-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
}

.reply-form textarea {
  resize: vertical;
  min-height: 80px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
  align-self: flex-start;
}

/* Kommentar-Toggle für alle Kommentare */
.comments-toggle {
  text-align: center;
  margin: 20px 0;
}

.btn-toggle-comments {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-color);
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-toggle-comments:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.toggle-count {
  color: var(--hellgrau);
  font-size: 0.9rem;
}

/* Versteckte Kommentare */
.hidden-comments {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Keine Kommentare */
.no-comments {
  text-align: center;
  color: var(--hellgrau);
  font-style: italic;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
}

/* Kommentar-Formular */
.comment-form {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
}

.comment-form .form-group {
  margin-bottom: 15px;
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px;
  color: var(--text-color);
  font-size: 0.9rem;
  transition: all var(--transition-normal);
}

.comment-form input:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
}

.comment-form textarea {
  resize: vertical;
  min-height: 100px;
}

/* Responsive Kommentare */
@media (max-width: 768px) {
  .comment {
    padding: 15px;
  }
  
  .comment-reply {
    margin-left: 20px;
  }
  
  .comment-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .comment-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .reply-form input,
  .reply-form textarea {
    font-size: 16px; /* Verhindert Zoom auf iOS */
  }
}

