:root {
  --bg: #050810;
  --bg-deep: #030508;
  --bg-section: #0a0f1a;
  --bg-card: #0d1322;
  --bg-card-hover: #111830;
  --border: #1a2540;
  --border-glow: #2a3a5c;
  --text: #e8ecf4;
  --text-dim: #8892a8;
  --text-muted: #5a6478;
  --gold: #d4a574;
  --gold-bright: #f0c87a;
  --gold-dim: #8a6a48;
  --ocean: #1a6b8a;
  --ocean-bright: #22d3ee;
  --ocean-dim: #0e4a60;
  --danger: #c0392b;
  --font-display: 'Cinzel Decorative', 'Cinzel', serif;
  --font-heading: 'Cinzel', serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --radius: 16px;
  --radius-sm: 8px;
  --radius-pill: 999px;
  --shadow-sm: 0 4px 20px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.4);
  --shadow-lg: 0 20px 80px rgba(0,0,0,0.6);
  --shadow-glow-gold: 0 0 40px rgba(212,165,116,0.15);
  --shadow-glow-ocean: 0 0 40px rgba(34,211,238,0.1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection {
  background: rgba(212,165,116,0.35);
  color: #fff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--ocean-bright);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--gold-bright);
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* ═══════════════ HEADER ═══════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.3s, backdrop-filter 0.3s;
}

.site-header.scrolled {
  background: rgba(5,8,16,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.header-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
}

.header-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  letter-spacing: 0.08em;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.header-nav a {
  color: var(--text-dim);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.header-nav a:hover {
  color: var(--gold);
  text-decoration: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-switch {
  display: inline-flex;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 3px;
}

.lang-switch button {
  border: 0;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.05em;
}

.lang-switch button.active {
  background: var(--gold);
  color: #fff;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-gold);
  color: #fff;
  text-decoration: none;
}

/* ═══════════════ HERO ═══════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 500px at 50% 30%, rgba(212,165,116,0.06), transparent),
    radial-gradient(ellipse 600px 400px at 20% 60%, rgba(26,107,138,0.08), transparent),
    radial-gradient(ellipse 600px 400px at 80% 70%, rgba(212,165,116,0.04), transparent);
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: float-particle 8s infinite;
}

@keyframes float-particle {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(212,165,116,0.1);
  border: 1px solid rgba(212,165,116,0.25);
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

.hero-logo {
  width: min(320px, 70vw);
  margin: 0 auto 28px;
  filter: drop-shadow(0 0 60px rgba(212,165,116,0.2));
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 7vw, 5rem);
  line-height: 1.05;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 8px;
  text-shadow: 0 0 80px rgba(212,165,116,0.15);
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #34a853, #2d8f47);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 30px rgba(52,168,83,0.3);
}

.btn-play:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(52,168,83,0.4);
  color: #fff;
  text-decoration: none;
}

.btn-play svg {
  width: 24px;
  height: 24px;
}

.btn-apple {
  background: #333;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.btn-apple:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

/* ═══════════════ SECTIONS ═══════════════ */
.section {
  padding: 100px 0;
  position: relative;
}

.section-dark {
  background: var(--bg-section);
}

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

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ═══════════════ SCREENSHOTS ═══════════════ */
.screenshots-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius);
}

.screenshots-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.screenshot-slide {
  min-width: 100%;
  padding: 0 20px;
}

.screenshot-slide img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.2s;
  display: grid;
  place-items: center;
}

.carousel-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,165,116,0.1);
}

.carousel-counter {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

.carousel-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: var(--border);
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: var(--radius-pill);
}

/* ═══════════════ FEATURES ═══════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-gold);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(212,165,116,0.1);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.feature-card p {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ═══════════════ STORY ═══════════════ */
.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 24px;
  line-height: 1.2;
}

.story-text p {
  color: var(--text-dim);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.story-text .highlight {
  color: var(--gold);
  font-weight: 600;
}

.story-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.story-image {
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.story-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.story-badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.story-badge-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ═══════════════ EPISODES ═══════════════ */
.episode-single {
  display: flex;
  justify-content: center;
}

.episode-card {
  max-width: 340px;
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  text-decoration: none;
  color: inherit;
  display: block;
}

.episode-card:hover {
  text-decoration: none;
  color: inherit;
}

.episode-current {
  border-color: var(--gold-dim);
  box-shadow: var(--shadow-glow-gold);
  cursor: pointer;
}

.episode-current:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(212,165,116,0.2);
}

.episode-thumb {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  border: 1px solid var(--border);
}

.episode-stores {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
}

.store-badge:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.store-google {
  background: #34a853;
  color: #fff;
}

.store-google:hover {
  background: #2d8f47;
  color: #fff;
}

.store-apple {
  background: #555;
  color: #fff;
}

.store-apple:hover {
  background: #444;
  color: #fff;
}

.episode-locked {
  opacity: 0.45;
  pointer-events: none;
}

.episode-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.episode-locked .episode-num {
  color: var(--text-muted);
}

.episode-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.episode-status {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ═══════════════ DOWNLOAD CTA ═══════════════ */
.download-section {
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.download-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 800px 400px at 50% 50%, rgba(212,165,116,0.08), transparent);
  pointer-events: none;
}

.download-content {
  position: relative;
  z-index: 2;
}

.download-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  margin-bottom: 16px;
}

.download-subtitle {
  color: var(--text-dim);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.download-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 36px;
  background: #34a853;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 8px 30px rgba(52,168,83,0.3);
}

.download-badge:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(52,168,83,0.45);
  color: #fff;
  text-decoration: none;
}

.download-badge svg {
  width: 28px;
  height: 28px;
}

.download-badge-apple {
  background: #333;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.download-badge-apple:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.download-stores {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.download-meta {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ═══════════════ CREDITS ═══════════════ */
.credits-deco {
  font-size: 2.4rem;
  margin-bottom: 8px;
  opacity: 0.5;
  animation: spin-slow 20s linear infinite;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.credits-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.credits-divider span {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.credits-divider svg {
  opacity: 0.6;
}

.credits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 32px;
  perspective: 1200px;
}

/* ── Flip Card ── */
.credit-card--flip {
  height: 420px;
  cursor: pointer;
}

.credit-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.4, 0.0, 0.2, 1);
  transform-style: preserve-3d;
}

.credit-card--flip:hover .credit-card-inner {
  transform: rotateY(180deg);
}

.credit-card-front,
.credit-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.credit-card-front {
  background: var(--bg-card);
}

.credit-card-back {
  background: linear-gradient(145deg, var(--bg-card) 0%, #0f1a2e 100%);
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.credit-card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(212,165,116,0.15), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.credit-card--flip:hover .credit-card-glow {
  opacity: 1;
}

.credit-wanted {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.credit-card--flip:hover .credit-wanted {
  transform: scale(1.05);
}

.credit-back-content {
  padding: 32px 24px;
  text-align: center;
  animation: credit-reveal 0.5s ease 0.2s both;
}

@keyframes credit-reveal {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.credit-back-content h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--text);
}

.credit-role {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding: 4px 14px;
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius-pill);
}

.credit-back-content p {
  color: var(--text-dim);
  font-size: 0.88rem;
  line-height: 1.7;
}

.credit-back-content p a {
  color: var(--ocean-bright);
}

.credit-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  transition: color 0.2s;
}

.credit-link:hover {
  color: var(--gold-bright);
}

/* ── Mobile: no flip, stack ── */
@media (max-width: 900px) {
  .credit-card--flip {
    height: auto;
  }

  .credit-card-inner {
    transform: none !important;
  }

  .credit-card-front,
  .credit-card-back {
    position: relative;
    backface-visibility: visible;
    transform: none;
  }

  .credit-card-back {
    display: block;
    padding: 0;
  }

  .credit-card--flip:hover .credit-card-inner {
    transform: none;
  }

  .credit-wanted {
    max-height: 360px;
    object-fit: contain;
    background: var(--bg-card);
  }

  .credit-card-glow {
    display: none;
  }
}

/* ═══════════════ FOOTER ═══════════════ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
  background: var(--bg-deep);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.footer-brand {
  max-width: 320px;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-brand-logo img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.footer-brand-logo span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
}

.footer-brand p {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links h5 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: var(--text);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ═══════════════ ANIMATIONS ═══════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 900px) {
  .story-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-visual {
    order: -1;
  }

  .story-badge {
    bottom: -10px;
    right: 10px;
  }

  .footer-grid {
    flex-direction: column;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .header-nav {
    display: none;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-logo {
    width: min(240px, 60vw);
  }

  .section {
    padding: 64px 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .episode-card {
    max-width: 300px;
  }

  .download-section {
    padding: 80px 0;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ═══════════════ COOKIE CONSENT ═══════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(5, 8, 16, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.hidden {
  transform: translateY(100%);
  pointer-events: none;
}

.cookie-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-text {
  color: var(--text-dim);
  font-size: 0.85rem;
  line-height: 1.6;
  flex: 1;
  min-width: 200px;
  margin: 0;
}

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

.cookie-btn {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.cookie-accept {
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--bg-dark);
}

.cookie-accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212, 165, 116, 0.3);
}

.cookie-reject {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--border);
}

.cookie-reject:hover {
  border-color: var(--text-dim);
  color: var(--text);
}

.cookie-link {
  color: var(--ocean-bright);
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.2s;
}

.cookie-link:hover {
  color: var(--ocean-light);
}

@media (max-width: 600px) {
  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }
}
