/* ============================================================
   lalamoon_Cookie — Hauptstylesheet
   Dark: Mondblau + Cookie-Beige  |  Light: Pastell-Pink + Lila
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Nunito:wght@300;400;500;600;700;800&display=swap');

/* ── CSS Custom Properties ── */
:root {
  /* Dark Mode (Standard) */
  --bg-main:        #070b18;
  --bg-secondary:   #0c1325;
  --bg-card:        #0f1830;
  --bg-card-hover:  #142040;
  --bg-overlay:     rgba(7, 11, 24, 0.88);
  --bg-nav:         rgba(7, 11, 24, 0.92);

  --blue-deep:      #1a3a70;
  --blue-mid:       #2563eb;
  --blue-light:     #60a5fa;
  --blue-glow:      rgba(96, 165, 250, 0.18);
  --blue-border:    rgba(96, 165, 250, 0.25);

  --beige:          #f5e0bb;
  --beige-muted:    #c4a87a;
  --beige-dark:     #8a6a3a;

  --text-h:         #e8ddd0;
  --text-p:         #98aec8;
  --text-muted:     #526280;
  --text-link:      #60a5fa;

  --accent-1:       #2563eb;
  --accent-2:       #7c3aed;
  --gradient-accent: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  --gradient-card:   linear-gradient(135deg, rgba(37,99,235,0.08) 0%, rgba(124,58,237,0.04) 100%);
  --gradient-hero:   radial-gradient(ellipse at top, #0f1e3d 0%, #070b18 60%);
  --gradient-text:   linear-gradient(135deg, #60a5fa, #c084fc);

  --border-subtle:  rgba(37, 99, 235, 0.18);
  --border-accent:  rgba(96, 165, 250, 0.35);
  --border-card:    rgba(96, 165, 250, 0.15);

  --shadow-card:    0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow:    0 0 24px rgba(96, 165, 250, 0.25);
  --shadow-hover:   0 12px 40px rgba(96, 165, 250, 0.2);

  --radius-sm:      8px;
  --radius-md:      14px;
  --radius-lg:      20px;
  --radius-xl:      28px;
  --radius-pill:    9999px;

  --font-head:      'Space Grotesk', sans-serif;
  --font-body:      'Nunito', sans-serif;

  --nav-h:          70px;
  --transition:     all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="light"] {
  --bg-main:        #fef5f9;
  --bg-secondary:   #fff0f7;
  --bg-card:        #fffafd;
  --bg-card-hover:  #ffe8f4;
  --bg-overlay:     rgba(254, 245, 249, 0.92);
  --bg-nav:         rgba(254, 245, 249, 0.94);

  --blue-deep:      #f9a8d4;
  --blue-mid:       #ec4899;
  --blue-light:     #f472b6;
  --blue-glow:      rgba(236, 72, 153, 0.15);
  --blue-border:    rgba(236, 72, 153, 0.25);

  --beige:          #6b21a8;
  --beige-muted:    #9333ea;
  --beige-dark:     #2d1b5e;

  --text-h:         #2d1b5e;
  --text-p:         #5b2d8e;
  --text-muted:     #9d74c4;
  --text-link:      #9333ea;

  --accent-1:       #ec4899;
  --accent-2:       #a855f7;
  --gradient-accent: linear-gradient(135deg, #ec4899 0%, #a855f7 100%);
  --gradient-card:   linear-gradient(135deg, rgba(236,72,153,0.06) 0%, rgba(168,85,247,0.04) 100%);
  --gradient-hero:   radial-gradient(ellipse at top, #f3e8ff 0%, #fce7f3 60%);
  --gradient-text:   linear-gradient(135deg, #ec4899, #a855f7);

  --border-subtle:  rgba(168, 85, 247, 0.18);
  --border-accent:  rgba(236, 72, 153, 0.35);
  --border-card:    rgba(236, 72, 153, 0.15);

  --shadow-card:    0 8px 32px rgba(168, 85, 247, 0.12);
  --shadow-glow:    0 0 24px rgba(236, 72, 153, 0.2);
  --shadow-hover:   0 12px 40px rgba(168, 85, 247, 0.18);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-p);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
}

img { max-width: 100%; display: block; }
a { color: var(--text-link); text-decoration: none; transition: var(--transition); }
a:hover { opacity: 0.8; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; outline: none; }

/* ── Stars Background ── */
.stars-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.stars-bg::before,
.stars-bg::after {
  content: '';
  position: absolute;
  inset: -50%;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 60%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 50% 10%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 40%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 80%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 15% 75%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 45% 55%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 15%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(2px 2px at 25% 35%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 90%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 5% 50%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 85% 65%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 38% 82%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 72% 28%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(2px 2px at 92% 45%, rgba(96,165,250,0.5) 0%, transparent 100%),
    radial-gradient(2px 2px at 18% 90%, rgba(192,132,252,0.4) 0%, transparent 100%);
  animation: twinkle 6s ease-in-out infinite alternate;
}
.stars-bg::after {
  transform: rotate(30deg);
  animation-delay: -3s;
  animation-duration: 9s;
}
[data-theme="light"] .stars-bg { opacity: 0.08; }

@keyframes twinkle {
  0%   { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1;   transform: scale(1.05); }
}

/* ── Layout Wrapper ── */
.page-wrapper {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--wide { max-width: 1400px; }
.container--narrow { max-width: 800px; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 100;
  background: var(--bg-nav);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-glow);
}
.nav__logo-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-p);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.nav__link:hover,
.nav__link.active {
  color: var(--text-h);
  background: var(--blue-glow);
  opacity: 1;
}
.nav__link.active {
  color: var(--blue-light);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Theme Toggle */
.theme-toggle {
  width: 44px;
  height: 24px;
  background: var(--gradient-accent);
  border-radius: var(--radius-pill);
  position: relative;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.theme-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
}
[data-theme="light"] .theme-toggle::after {
  transform: translateX(20px);
}
.theme-toggle__icon {
  position: absolute;
  font-size: 11px;
  top: 50%;
  transform: translateY(-50%);
}
.theme-toggle__icon--moon { right: 5px; }
.theme-toggle__icon--sun  { left: 5px; }

/* Live Badge */
.live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  color: #f87171;
  text-decoration: none;
  transition: var(--transition);
}
.live-badge:hover { background: rgba(239, 68, 68, 0.25); opacity: 1; }
.live-badge__dot {
  width: 7px;
  height: 7px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse-red 1.5s ease-in-out infinite;
}
@keyframes pulse-red {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

/* Mobile Menu */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  padding: 6px;
  border-radius: var(--radius-sm);
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-h);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--bg-nav);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 16px 24px 24px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
}
.nav__mobile.open { display: flex; }
.nav__mobile .nav__link {
  padding: 10px 14px;
  font-size: 0.95rem;
  display: block;
  width: 100%;
}

/* ── Main Content ── */
main { flex: 1; padding-top: var(--nav-h); }

/* ── Hero Section ── */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.hero__bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--blue-glow) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}
.hero__bg-glow--2 {
  top: auto;
  right: auto;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124,58,237,0.12) 0%, transparent 70%);
}

.hero__content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero__moon {
  font-size: 80px;
  line-height: 1;
  margin-bottom: 24px;
  display: block;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 0 20px var(--blue-glow));
}
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(-5deg); }
  50%       { transform: translateY(-12px) rotate(5deg); }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--blue-glow);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--text-h);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero__title .gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__desc {
  font-size: 1.1rem;
  color: var(--text-p);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gradient-accent);
  color: white;
  box-shadow: var(--shadow-glow);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  opacity: 1;
  color: white;
}

.btn--outline {
  background: transparent;
  color: var(--text-h);
  border: 1px solid var(--border-accent);
}
.btn--outline:hover {
  background: var(--blue-glow);
  transform: translateY(-2px);
  opacity: 1;
}

.btn--ghost {
  background: var(--bg-card);
  color: var(--text-p);
  border: 1px solid var(--border-card);
}
.btn--ghost:hover {
  background: var(--bg-card-hover);
  color: var(--text-h);
  opacity: 1;
}

.btn--sm { padding: 8px 16px; font-size: 0.82rem; }
.btn--lg { padding: 14px 32px; font-size: 1rem; }

/* ── Section ── */
.section {
  padding: 80px 0;
}
.section--sm { padding: 48px 0; }
.section--lg { padding: 120px 0; }

.section__head {
  text-align: center;
  margin-bottom: 56px;
}
.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-light);
  background: var(--blue-glow);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  margin-bottom: 14px;
}
.section__title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-h);
  margin-bottom: 12px;
}
.section__sub {
  font-size: 1rem;
  color: var(--text-p);
  max-width: 560px;
  margin: 0 auto;
}

/* ── Cards ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-card);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.card:hover::before { opacity: 1; }

/* Glass Card */
.card--glass {
  background: rgba(13, 20, 39, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
[data-theme="light"] .card--glass {
  background: rgba(255, 245, 252, 0.7);
}

/* ── Grid Layouts ── */
.grid {
  display: grid;
  gap: 24px;
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--auto { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

/* ── Price Cards ── */
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.price-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}
.price-card--featured {
  border-color: var(--accent-1);
  box-shadow: 0 0 30px var(--blue-glow);
}
.price-card--featured::before {
  content: '✨ Beliebt';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-accent);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.price-card__icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}
.price-card__name {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-h);
  margin-bottom: 8px;
}
.price-card__price {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
  line-height: 1;
}
.price-card__price--from {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  -webkit-text-fill-color: var(--text-muted);
  display: block;
  margin-bottom: 16px;
}
.price-card__desc {
  font-size: 0.88rem;
  color: var(--text-p);
  margin-bottom: 20px;
  line-height: 1.6;
}
.price-card__features {
  flex: 1;
  margin-bottom: 24px;
}
.price-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.88rem;
  color: var(--text-p);
}
.price-card__feature:last-child { border-bottom: none; }
.price-card__feature::before {
  content: '✓';
  color: var(--blue-light);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.price-card__feature--no::before { content: '✗'; color: var(--text-muted); }

/* ── Shop / Product Cards ── */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.product-card__image {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--gradient-card);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.product-card__badge--digital {
  background: rgba(96, 165, 250, 0.2);
  color: var(--blue-light);
  border: 1px solid var(--blue-border);
}
.product-card__badge--physical {
  background: rgba(240, 217, 181, 0.2);
  color: var(--beige);
  border: 1px solid rgba(240, 217, 181, 0.3);
}
[data-theme="light"] .product-card__badge--physical {
  background: rgba(168, 85, 247, 0.1);
  color: var(--accent-2);
  border-color: rgba(168, 85, 247, 0.3);
}
.product-card__body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card__name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-h);
  margin-bottom: 6px;
}
.product-card__desc {
  font-size: 0.84rem;
  color: var(--text-p);
  line-height: 1.5;
  flex: 1;
  margin-bottom: 14px;
}
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
}
.product-card__price {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Blog Cards ── */
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.blog-card__image {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--gradient-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  overflow: hidden;
  position: relative;
}
.blog-card__image img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-card__tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--blue-glow);
  border: 1px solid var(--border-accent);
  color: var(--blue-light);
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.blog-card__title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-h);
  margin-bottom: 8px;
  line-height: 1.3;
}
.blog-card__excerpt {
  font-size: 0.86rem;
  color: var(--text-p);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 14px;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── Stream Page ── */
.stream-embed {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-card);
  background: #000;
  aspect-ratio: 16/9;
}
.stream-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
}
.stream-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 20px;
  align-items: flex-start;
}
.chat-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-card);
  background: #000;
  height: 600px;
}
.chat-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* ── Forms ── */
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-h);
  margin-bottom: 8px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-h);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: var(--transition);
  outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px var(--blue-glow);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-muted); }
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
.form-select option { background: var(--bg-secondary); color: var(--text-h); }
.form-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 5px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ── Tags / Badges ── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  color: var(--text-p);
}
.tag--accent {
  background: var(--blue-glow);
  border-color: var(--border-accent);
  color: var(--blue-light);
}

/* ── Divider ── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
  margin: 40px 0;
}

/* ── Social Links ── */
.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-pill);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-p);
  text-decoration: none;
  transition: var(--transition);
}
.social-link:hover {
  border-color: var(--border-accent);
  color: var(--text-h);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
  opacity: 1;
}
.social-link--twitch:hover { border-color: #9147ff; color: #9147ff; }
.social-link--twitter:hover { border-color: #1d9bf0; color: #1d9bf0; }
.social-link--kofi:hover { border-color: #ff5e5b; color: #ff5e5b; }

/* ── Alerts / Info Boxes ── */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  border-left: 3px solid;
  background: var(--bg-card);
  margin-bottom: 16px;
}
.alert--info {
  border-color: var(--blue-light);
  color: var(--text-p);
}
.alert--warn {
  border-color: #f59e0b;
  color: var(--text-p);
}
.alert--success {
  border-color: #34d399;
  color: var(--text-p);
}

/* ── Page Header ── */
.page-header {
  padding: 60px 0 40px;
  text-align: center;
  background: var(--gradient-hero);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}
.page-header__glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--blue-glow) 0%, transparent 70%);
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.page-header__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-light);
  background: var(--blue-glow);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  margin-bottom: 14px;
}
.page-header__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--text-h);
  margin-bottom: 12px;
}
.page-header__sub {
  font-size: 1rem;
  color: var(--text-p);
  max-width: 500px;
  margin: 0 auto;
}

/* ── Filter Tabs ── */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-tab {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.86rem;
  font-weight: 600;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  color: var(--text-p);
  cursor: pointer;
  transition: var(--transition);
}
.filter-tab:hover { border-color: var(--border-accent); color: var(--text-h); }
.filter-tab.active {
  background: var(--gradient-accent);
  border-color: transparent;
  color: white;
  box-shadow: var(--shadow-glow);
}

/* ── Table ── */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-card);
}
.table {
  width: 100%;
  border-collapse: collapse;
}
.table th {
  padding: 14px 18px;
  text-align: left;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-subtle);
}
.table td {
  padding: 14px 18px;
  font-size: 0.9rem;
  color: var(--text-p);
  border-bottom: 1px solid var(--border-subtle);
}
.table tbody tr:last-child td { border-bottom: none; }
.table tbody tr:hover td { background: var(--bg-card-hover); }

/* ── Schedule ── */
.schedule-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-subtle);
  align-items: center;
}
.schedule-row:last-child { border-bottom: none; }
.schedule-day {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue-light);
}
.schedule-info { font-size: 0.9rem; color: var(--text-p); }
.schedule-time { color: var(--text-muted); font-size: 0.82rem; }
.schedule-row--off .schedule-day { color: var(--text-muted); }
.schedule-row--off .schedule-info { color: var(--text-muted); font-style: italic; }

/* Heute-Hervorhebung */
.schedule-row--today {
  background: rgba(96,165,250,0.06);
  border-radius: 8px;
  padding-left: 10px;
  padding-right: 10px;
  margin: 0 -10px;
}
.schedule-row--today .schedule-day { color: var(--blue-light); }
.schedule-today-dot {
  display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue-light);
  margin-left: 5px;
  vertical-align: middle;
  animation: sdPulse 2s ease-in-out infinite;
}
@keyframes sdPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* Abgesagt */
.schedule-row--cancelled .schedule-day { color: #f87171; }
.schedule-status--cancelled { color: #f87171; font-weight: 600; }

/* Frei */
.schedule-row--day-off .schedule-day { color: #fbbf24; }
.schedule-status--day-off { color: #fbbf24; font-style: italic; }

/* ── Stream-Info-Alert ── */
.stream-info-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  margin-bottom: 16px;
  border-radius: 10px;
  background: rgba(251,191,36,0.1);
  border: 1px solid rgba(251,191,36,0.3);
  color: #fbbf24;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
}
.stream-info-alert__icon { font-size: 1.1em; flex-shrink: 0; }

/* ── Live-PiP-Popup ── */
.lc-pip {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 320px;
  background: var(--bg-card, #111827);
  border: 1px solid rgba(239,68,68,0.4);
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(239,68,68,0.15);
  z-index: 9999;
  overflow: hidden;
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), opacity 0.35s ease;
}
.lc-pip.is-hidden {
  transform: translateY(calc(100% + 32px));
  opacity: 0;
  pointer-events: none;
}
.lc-pip__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px 8px;
  background: rgba(239,68,68,0.08);
}
.lc-pip__live {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head, 'Outfit',sans-serif);
  font-size: 0.82rem;
  font-weight: 700;
  color: #f87171;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.lc-pip__live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 6px rgba(239,68,68,0.7);
  animation: pipDot 1.4s ease-in-out infinite;
}
@keyframes pipDot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.25; }
}
.lc-pip__close {
  background: none; border: none; cursor: pointer;
  color: var(--text-muted, #6b7280); font-size: 18px; line-height: 1;
  padding: 2px 4px; border-radius: 4px;
  transition: color 0.15s, background 0.15s;
}
.lc-pip__close:hover { color: var(--text-h, #e8ddd0); background: rgba(255,255,255,0.06); }
.lc-pip__embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  background: #000;
}
.lc-pip__embed iframe {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  border: none;
}
.lc-pip__footer {
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.lc-pip__channel {
  font-family: var(--font-head, 'Outfit',sans-serif);
  font-size: 0.88rem; font-weight: 700;
  color: var(--text-h, #e8ddd0);
}
.lc-pip__btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 8px;
  background: #ef4444; color: #fff;
  font-size: 0.8rem; font-weight: 700;
  text-decoration: none; white-space: nowrap;
  transition: background 0.15s;
}
.lc-pip__btn:hover { background: #dc2626; }

@media (max-width: 480px) {
  .lc-pip { width: calc(100vw - 32px); right: 16px; bottom: 16px; }
}

/* ── Footer ── */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 48px 0 24px;
  position: relative;
  z-index: 1;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer__brand .nav__logo { margin-bottom: 14px; }
.footer__brand p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 240px;
  margin-bottom: 16px;
}
.footer__col-title {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-h);
  margin-bottom: 16px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer__links a {
  font-size: 0.86rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}
.footer__links a:hover { color: var(--text-h); opacity: 1; }
.footer__bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__copy {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer__copy span {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Gradient Text Utility ── */
.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Page Sections (scroll fade-in) ── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Stat Cards (Home) ── */
.stat-card {
  text-align: center;
  padding: 24px;
}
.stat-card__number {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-card__label {
  font-size: 0.86rem;
  color: var(--text-muted);
}

/* ── Commission Status ── */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
}
.status-badge--open { background: rgba(52, 211, 153, 0.15); color: #34d399; border: 1px solid rgba(52, 211, 153, 0.3); }
.status-badge--closed { background: rgba(248, 113, 113, 0.15); color: #f87171; border: 1px solid rgba(248, 113, 113, 0.3); }
.status-badge--pending { background: rgba(251, 191, 36, 0.15); color: #fbbf24; border: 1px solid rgba(251, 191, 36, 0.3); }
.status-dot { width: 6px; height: 6px; background: currentColor; border-radius: 50%; }

/* ── About Page ── */
.about-hero {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: center;
}
.about-avatar {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  background: var(--gradient-card);
  border: 2px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  box-shadow: var(--shadow-glow);
  overflow: hidden;
}
.about-avatar img { width: 100%; height: 100%; object-fit: cover; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .stream-layout { grid-template-columns: 1fr; }
  .chat-embed { height: 400px; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .live-badge span { display: none; }

  .hero { padding: 40px 0; }
  .hero__moon { font-size: 56px; }

  .grid--2,
  .grid--3,
  .grid--4 { grid-template-columns: 1fr; }
  .grid--auto { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .footer__brand p { max-width: 100%; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .about-hero { grid-template-columns: 1fr; }
  .about-avatar { max-width: 200px; margin: 0 auto; }
  .section { padding: 56px 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__actions { flex-direction: column; align-items: center; }
  .btn--lg { width: 100%; justify-content: center; }
}
