/* ============================================================
   AFTER SCHOOL SPECIAL PODCAST — style.css v6.0
   Fully Responsive: Mobile · Tablet · Desktop · Ultra-Wide
   90s Sticker / Nickelodeon Aesthetic
   Desktop Centering + Welcome Video 900px Cap + 232px Spotify Players
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,900;1,9..40,400&family=Bangers&family=Permanent+Marker&display=swap');

/* ── CSS Variables ── */
:root {
  --bg-dark:        #2a0a44;
  --bg-card:        #3d1266;
  --bg-deeper:      #1a0033;
  --bg-light:       #f8f4ff;
  --accent:         #f4d35e;
  --accent-hover:   #e0c040;
  --text-white:     #ffffff;
  --text-muted:     #d4b8f0;
  --text-dark:      #1a0033;
  --border-gold:    rgba(244,211,94,0.18);
  --border-card:    rgba(244,211,94,0.14);
  --font-display:   'DM Serif Display', Georgia, serif;
  --font-body:      'DM Sans', system-ui, sans-serif;
  --font-stamp:     'Bangers', cursive;
  /* Layout — fluid 90%, max 1200px, always centered */
  --container-w:    1200px;
  --section-pad:    5rem;
  --radius:         12px;
  --transition:     0.22s ease;
  /* Sticker colors */
  --sticker-yellow: #f4d35e;
  --sticker-orange: #ff6b35;
  --sticker-pink:   #ff4da6;
  --sticker-green:  #39d353;
  --sticker-blue:   #4dc3ff;
}

/* ── Reset ── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.65;
  overflow-x: hidden;
}
img  { display:block; max-width:100%; }
a    { color:inherit; text-decoration:none; }
ul   { list-style:none; }
iframe { display:block; border:none; }

/* ======================================================
   ░░ FLUID CONTAINER SYSTEM
   All main blocks: 90% wide, max 1200px, margin 0 auto
   This centers everything perfectly on every screen size.
   ====================================================== */
.container {
  width: 90%;
  max-width: var(--container-w);
  margin: 0 auto;
}
.container--narrow {
  width: 90%;
  max-width: 760px;
  margin: 0 auto;
}

/* ======================================================
   ░░ SPOTIFY PLAYER WRAPPER
   Fixed 232px height so Save/Share buttons are never cut off.
   Width always 100% of its parent — responsive by default.
   ====================================================== */
.spotify-player-wrap {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
}
.spotify-player-wrap iframe {
  width: 100%;
  height: 232px;
  border: none;
  display: block;
}

/* Styled version with border + glow */
.spotify-player-wrap--styled {
  border: 2px solid var(--border-gold);
  box-shadow: 0 0 40px rgba(244,211,94,0.08), 0 16px 48px rgba(0,0,0,0.55);
}

/* ======================================================
   ░░ RESPONSIVE IFRAME — YouTube / 16:9
   aspect-ratio scales perfectly without manual heights.
   ====================================================== */
.iframe-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius);
}
.iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Styled embed frame */
.embed-frame {
  border: 2px solid var(--border-gold);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 0 48px rgba(244,211,94,0.07), 0 24px 64px rgba(0,0,0,0.6);
}
.embed-frame--red {
  border-color: rgba(255,0,0,0.3);
  box-shadow: 0 0 48px rgba(255,0,0,0.08), 0 24px 64px rgba(0,0,0,0.6);
}

/* ======================================================
   ░░ WELCOME VIDEO — 900px max on desktop, 100% on mobile
   The "secret sauce" for a pro agency look on large screens.
   ====================================================== */
.welcome-video-wrap {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

/* ======================================================
   ░░ EPISODE SPOTLIGHT — large, centered on desktop
   ====================================================== */
.ep-spotlight-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
  max-width: var(--container-w);
  margin: 0 auto;
}

/* Spotify mini inside spotlight — full height 232px */
.ep-spotlight-player {
  width: 100%;
}
.ep-spotlight-player .spotify-player-wrap {
  border: 2px solid var(--border-gold);
  border-radius: var(--radius);
  box-shadow: 0 0 40px rgba(244,211,94,0.08), 0 16px 48px rgba(0,0,0,0.55);
}

@media (max-width: 860px) {
  .ep-spotlight-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ======================================================
   ░░ ARCHIVE GRID — 5 panels (101–105), 2-3 col desktop
   ====================================================== */
.archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.archive-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.archive-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}

.archive-panel-header {
  padding: 1.25rem 1.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.archive-ep-badge {
  display: inline-block;
  background: rgba(244,211,94,0.12);
  border: 1px solid rgba(244,211,94,0.28);
  color: var(--accent);
  font-family: var(--font-stamp);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  padding: 0.22rem 0.8rem;
  border-radius: 50px;
}

.archive-ep-title {
  font-family: var(--font-display);
  font-size: 0.98rem;
  color: var(--accent);
  line-height: 1.3;
  padding: 0.6rem 1.5rem 0.5rem;
}

.archive-ep-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 0 1.5rem 1rem;
  line-height: 1.6;
  flex: 1;
}

/* Spotify embed sits at bottom of each panel */
.archive-panel .spotify-player-wrap {
  margin-top: auto;
  border-radius: 0;
}
.archive-panel .spotify-player-wrap iframe {
  border-radius: 0;
}

/* ======================================================
   ░░ BUTTONS
   ====================================================== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: var(--accent); color: var(--text-dark);
  border-radius: 8px; font-weight: 900; font-family: var(--font-body);
  font-size: 0.95rem; padding: 0.75rem 1.75rem; letter-spacing: 0.02em;
  border: 2px solid var(--accent); cursor: pointer; white-space: nowrap;
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.btn-primary:hover { background:var(--accent-hover); border-color:var(--accent-hover); transform:translateY(-2px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: transparent; color: var(--accent);
  border-radius: 8px; font-weight: 900; font-family: var(--font-body);
  font-size: 0.95rem; padding: 0.75rem 1.75rem; letter-spacing: 0.02em;
  border: 2px solid var(--accent); cursor: pointer; white-space: nowrap;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.btn-outline:hover { background:var(--accent); color:var(--text-dark); transform:translateY(-2px); }

.btn-red {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: #ff0000; color: #fff;
  border-radius: 8px; font-weight: 900; font-family: var(--font-body);
  font-size: 0.95rem; padding: 0.75rem 1.75rem; letter-spacing: 0.02em;
  border: 2px solid #ff0000; cursor: pointer; white-space: nowrap;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}
.btn-red:hover { background:#cc0000; border-color:#cc0000; transform:translateY(-2px); }

/* ── Section helpers ── */
section { padding: var(--section-pad) 0; }
.section-label {
  display: block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.5rem;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  line-height: 1.15; margin-bottom: 1rem;
}
.divider-accent {
  width: 52px; height: 3px;
  background: var(--accent); border-radius: 2px;
  margin-bottom: 1.75rem;
}
.text-center { text-align: center; }
.eyebrow-pill {
  display: inline-block;
  background: rgba(244,211,94,0.1); border: 1px solid rgba(244,211,94,0.3);
  color: var(--accent); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.35rem 1rem; border-radius: 50px; margin-bottom: 1.25rem;
}

/* ======================================================
   ░░ CAUTION TAPE DIVIDER
   ====================================================== */
.caution-tape {
  width: 100%; overflow: hidden; line-height: 0;
  position: relative; z-index: 10; height: 48px;
  display: flex; align-items: center;
}
.caution-tape-inner {
  display: flex; width: 200%;
  animation: caution-scroll 18s linear infinite;
}
@keyframes caution-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.caution-tape-inner span {
  display: inline-block; font-family: var(--font-stamp);
  font-size: 1.05rem; letter-spacing: 0.18em;
  padding: 0.55rem 1.2rem; white-space: nowrap; flex-shrink: 0;
}
/* Yellow / Black */
.caution-tape--ybk .caution-tape-inner {
  background: repeating-linear-gradient(-55deg,
    #f4d35e 0px, #f4d35e 28px, #1a0033 28px, #1a0033 56px);
}
.caution-tape--ybk .caution-tape-inner span { color:#1a0033; background:#f4d35e; }
/* Purple / Gold */
.caution-tape--pgold { transform: rotate(-1deg); margin: -4px 0; }
.caution-tape--pgold .caution-tape-inner {
  background: repeating-linear-gradient(55deg,
    #2a0a44 0px, #2a0a44 28px, #f4d35e 28px, #f4d35e 56px);
  animation-direction: reverse; animation-duration: 22s;
}
.caution-tape--pgold .caution-tape-inner span { color:#f4d35e; background:#2a0a44; }

/* ======================================================
   ░░ STICKER SYSTEM
   ====================================================== */
.sticker {
  position: absolute; pointer-events: none; z-index: 5;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-stamp); font-weight: 400;
  letter-spacing: 0.05em; text-align: center; user-select: none;
  filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.5));
}
@keyframes sticker-float-a {
  0%,100% { transform: rotate(-8deg) translateY(0px) scale(1); }
  50%      { transform: rotate(-6deg) translateY(-8px) scale(1.03); }
}
@keyframes sticker-float-b {
  0%,100% { transform: rotate(6deg) translateY(0px) scale(1); }
  50%      { transform: rotate(8deg) translateY(-6px) scale(1.02); }
}
@keyframes sticker-float-c {
  0%,100% { transform: rotate(12deg) translateY(0px) scale(1); }
  50%      { transform: rotate(10deg) translateY(-10px) scale(1.04); }
}
@keyframes sticker-float-d {
  0%,100% { transform: rotate(-14deg) translateY(0px) scale(1); }
  50%      { transform: rotate(-12deg) translateY(-7px) scale(1.02); }
}
@keyframes sticker-pulse {
  0%,100% { transform: scale(1) rotate(-5deg); }
  50%      { transform: scale(1.08) rotate(-3deg); }
}
.sticker-circle {
  border-radius: 50%; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-family: var(--font-stamp); font-size: 0.7rem; line-height: 1.2;
  border: 3px solid rgba(0,0,0,0.15);
}
.sticker-circle--yellow { background: var(--sticker-yellow); color: #1a0033; }
.sticker-circle--pink   { background: var(--sticker-pink);   color: #ffffff; }
.sticker-circle--green  { background: var(--sticker-green);  color: #1a0033; }
.sticker-circle--blue   { background: var(--sticker-blue);   color: #1a0033; }
.sticker-circle--orange { background: var(--sticker-orange); color: #ffffff; }
.sticker-badge {
  padding: 0.5rem 1rem; border-radius: 6px;
  font-family: var(--font-stamp); font-size: 0.8rem;
  letter-spacing: 0.06em; border: 3px solid rgba(0,0,0,0.2);
  animation: sticker-pulse 3s ease-in-out infinite;
}
.sticker-badge--yellow { background: var(--sticker-yellow); color: #1a0033; }
.sticker-badge--pink   { background: var(--sticker-pink);   color: #ffffff; }
.sticker-badge--orange { background: var(--sticker-orange); color: #ffffff; }

/* ======================================================
   ░░ NAVBAR
   ====================================================== */
#navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border-gold);
  padding: 0.9rem 0;
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
}
.nav-logo img { height: 48px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  color: var(--text-white); font-weight: 500; font-size: 0.92rem;
  letter-spacing: 0.03em; position: relative; transition: color var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 2px; background: var(--accent); border-radius: 2px;
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-icons  { display: flex; align-items: center; gap: 0.6rem; }
.nav-icons a { display: flex; align-items: center; color: var(--accent); transition: opacity var(--transition); }
.nav-icons a:hover { opacity: 0.7; }
.nav-icons svg { width: 22px; height: 22px; }
.hamburger {
  display: none; background: none; border: none;
  cursor: pointer; padding: 0.2rem; color: var(--accent); line-height: 1;
}
.hamburger svg { width: 28px; height: 28px; display: block; }
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: var(--bg-deeper); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--text-white); font-size: 1.6rem; font-weight: 700; transition: color var(--transition); }
.mobile-menu a:hover { color: var(--accent); }
.mobile-close {
    position: absolute; 
    top: 2rem;       /* Moves it down from the very edge */
    right: 2rem;     /* Moves it in from the right edge */
    z-index: 1001;   /* Forces it to stay ABOVE the links */
    background: none; 
    border: none; 
    color: var(--accent); 
    font-size: 3rem; /* Makes the X bigger and easier to tap */
    cursor: pointer; 
    line-height: 1;
    padding: 10px;   /* Creates a bigger "tap zone" */
}

/* Add this right below it to give the links room */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.mobile-menu .btn-primary { font-size: 1rem; }
@media (max-width: 767px) {
  .nav-links { display: none; }
  .nav-right .btn-primary { display: none; }
  .nav-right .nav-icons { display: none; }
  .hamburger { display: flex; }
}

/* ======================================================
   ░░ HERO SECTION
   ====================================================== */
#hero {
  position: relative;
  background: radial-gradient(ellipse at 50% 38%, #3d1266 0%, var(--bg-dark) 68%);
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 4rem 0 3.5rem; overflow: hidden;
}
.hero-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(244,211,94,0.06);
  pointer-events: none; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.hero-ring-1 { width: 420px; height: 420px; }
.hero-ring-2 { width: 660px; height: 660px; }

.hero-content {
  position: relative; z-index: 2;
  max-width: 720px; width: 90%; margin: 0 auto;
}

/* Logo glow */
.hero-logo-frame { position: relative; display: inline-block; margin-bottom: 1.5rem; }
@keyframes logo-glow-pulse {
  0%,100% {
    filter: drop-shadow(0 0 18px rgba(244,211,94,0.55)) drop-shadow(0 0 40px rgba(61,18,102,0.9));
  }
  50% {
    filter: drop-shadow(0 0 32px rgba(244,211,94,0.88)) drop-shadow(0 0 64px rgba(61,18,102,0.95));
  }
}
.hero-logo-frame img { height: 150px; width: auto; margin: 0 auto; animation: logo-glow-pulse 3s ease-in-out infinite; }

/* Logo corner stickers */
.logo-sticker { position: absolute; z-index: 10; pointer-events: none; }
.logo-sticker--star-tl { top:-28px; left:-36px; width:68px; height:68px; animation:sticker-float-b 3.5s ease-in-out infinite; }
.logo-sticker--star-tl svg { width:100%; height:100%; }
.logo-sticker--arrow-tr { top:-16px; right:-36px; width:56px; height:56px; animation:sticker-float-d 4s ease-in-out infinite; }
.logo-sticker--arrow-tr svg { width:100%; height:100%; }
.logo-sticker--circle-bl {
  bottom:-18px; left:-28px; width:62px; height:62px;
  border-radius:50%; background:var(--sticker-pink); color:#fff;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  font-family:var(--font-stamp); font-size:0.56rem; line-height:1.2;
  border:3px solid rgba(0,0,0,0.15); animation:sticker-float-a 4.2s ease-in-out infinite; position:absolute;
}
.logo-sticker--circle-br {
  bottom:-14px; right:-26px; width:58px; height:58px;
  border-radius:50%; background:var(--sticker-green); color:#1a0033;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  font-family:var(--font-stamp); font-size:0.56rem; line-height:1.2;
  border:3px solid rgba(0,0,0,0.15); animation:sticker-float-c 3.8s ease-in-out infinite; position:absolute;
}

/* Floating hero sticker cluster */
.hero-sticker-cluster { position:absolute; inset:0; pointer-events:none; overflow:visible; z-index:3; }
.hsc-item { position:absolute; }
.hsc-1 { top:12%; left:4%; }
.hsc-2 { top:18%; right:5%; }
.hsc-3 { bottom:22%; left:6%; }
.hsc-4 { bottom:18%; right:4%; }
.hsc-5 { top:55%; left:2%; }
.hsc-6 { top:42%; right:3%; }

@media (max-width: 900px) {
  .hsc-1,.hsc-2,.hsc-3,.hsc-4,.hsc-5,.hsc-6 { display:none; }
  .logo-sticker--star-tl,.logo-sticker--arrow-tr,
  .logo-sticker--circle-bl,.logo-sticker--circle-br { display:none; }
}

.hero-title {
  font-family: var(--font-display); font-size: clamp(2rem,4.5vw,3.4rem);
  color: var(--accent); line-height: 1.08; margin-bottom: 0.85rem;
}
.hero-tagline  { font-size: clamp(1rem,1.8vw,1.15rem); color: var(--text-white); margin-bottom: 0.6rem; }
.hero-hosts    { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 2rem; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }
.hero-btns     { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }

@keyframes fadeUp {
  from { opacity:0; transform:translateY(22px); }
  to   { opacity:1; transform:translateY(0); }
}
.hero-content .eyebrow-pill    { animation:fadeUp 0.6s ease both 0.05s; }
.hero-content .hero-logo-frame { animation:fadeUp 0.7s ease both 0.10s; }
.hero-content .hero-title      { animation:fadeUp 0.6s ease both 0.25s; }
.hero-content .hero-tagline    { animation:fadeUp 0.6s ease both 0.33s; }
.hero-content .hero-hosts      { animation:fadeUp 0.6s ease both 0.40s; }
.hero-content .hero-btns       { animation:fadeUp 0.6s ease both 0.47s; }

/* ======================================================
   ░░ EP106 SPOTLIGHT
   ====================================================== */
#ep106-spotlight {
  background: linear-gradient(135deg, var(--bg-deeper) 0%, #2a0a44 60%, #1a0033 100%);
  padding: 5rem 0; border-bottom: 2px solid var(--border-gold);
}
.ep106-live-badge {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: var(--sticker-pink); color: #fff;
  font-family: var(--font-stamp); font-size: 0.82rem; letter-spacing: 0.12em;
  padding: 0.32rem 0.9rem; border-radius: 50px; margin-bottom: 1rem;
  width: fit-content; animation: sticker-pulse 2.5s ease-in-out infinite;
}
.ep106-live-badge::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: #fff; display: inline-block;
  animation: blink-dot 1.2s ease-in-out infinite;
}
@keyframes blink-dot {
  0%,100% { opacity:1; }
  50%      { opacity:0.15; }
}
.ep106-ep-number {
  font-family: var(--font-stamp); font-size: clamp(3rem,7vw,5.5rem);
  color: var(--accent); line-height: 1; margin-bottom: 0.25rem;
  text-shadow: 0 0 40px rgba(244,211,94,0.3);
}
.ep106-title {
  font-family: var(--font-display); font-size: clamp(1.3rem,2.5vw,1.9rem);
  color: var(--text-white); line-height: 1.25; margin-bottom: 0.85rem;
}
.ep106-desc {
  font-size: 0.95rem; color: var(--text-muted); line-height: 1.78;
  margin-bottom: 1.75rem; max-width: 480px;
}
.ep106-actions { display:flex; gap:0.85rem; flex-wrap:wrap; align-items:center; }

@media (max-width: 500px) { .ep106-actions { flex-direction:column; align-items:flex-start; } }

/* ======================================================
   ░░ PAGE HERO (inner pages)
   ====================================================== */
.page-hero {
  background: radial-gradient(ellipse at 50% 60%, #3d1266 0%, var(--bg-dark) 70%);
  padding: 5rem 0 4rem; text-align: center;
  border-bottom: 1px solid var(--border-gold);
  position: relative; overflow: hidden;
}
.page-hero .section-heading { color: var(--accent); }
.page-hero p { color: var(--text-muted); max-width: 580px; margin: 0 auto; font-size: 1.05rem; }

/* ======================================================
   ░░ CREW PHOTO SECTION
   ====================================================== */
#crew-photo-section { background: var(--bg-deeper); padding: 4.5rem 0; }
.crew-photo-wrap {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 4rem; align-items: center;
}
.crew-photo-img {
  width: 100%; border-radius: var(--radius);
  border: 3px solid var(--accent); object-fit: cover;
  box-shadow: 0 0 32px rgba(244,211,94,0.15), 0 16px 48px rgba(0,0,0,0.55);
}
.crew-photo-text .section-heading { color: var(--text-white); }
.crew-photo-text p { color:var(--text-muted); font-size:0.95rem; line-height:1.78; margin-bottom:1.1rem; }
.crew-photo-text p:last-of-type { margin-bottom:1.75rem; }
.host-pill-row { display:flex; gap:0.65rem; flex-wrap:wrap; margin-bottom:1.75rem; }
.host-pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--bg-card); border: 1px solid var(--border-card);
  border-radius: 50px; padding: 0.4rem 0.95rem;
  font-weight: 700; font-size: 0.85rem; color: var(--accent);
}
.host-pill-avatar {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--bg-deeper); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-stamp); font-size: 0.75rem;
}
@media (max-width: 860px) { .crew-photo-wrap { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ======================================================
   ░░ HOST CARDS — responsive auto-fit grid
   ====================================================== */
.hosts-section { background: var(--bg-dark); padding: var(--section-pad) 0; }
.hosts-section .section-heading { color:var(--accent); text-align:center; }
.hosts-section .section-label   { text-align:center; }
.host-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem; margin-top: 3rem;
}
.host-card-full {
  background: var(--bg-card); border: 1px solid var(--border-card);
  border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.host-card-full:hover { transform:translateY(-5px); box-shadow:0 16px 40px rgba(0,0,0,0.45); }
.host-card-photo { width:100%; aspect-ratio:1/1; object-fit:cover; object-position:top center; background:var(--bg-deeper); }
.host-card-body { padding:1.5rem 1.5rem 1.75rem; display:flex; flex-direction:column; gap:0.5rem; flex:1; }
.host-card-name { font-family:var(--font-display); font-size:1.3rem; color:var(--accent); }
.host-card-role { font-size:0.72rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:var(--text-muted); }
.host-card-bio  { font-size:0.88rem; color:rgba(255,255,255,0.82); line-height:1.72; flex:1; }

/* ======================================================
   ░░ REVIEWS SECTION
   ====================================================== */
#reviews { background:var(--bg-deeper); padding:var(--section-pad) 0; }
#reviews .section-heading { color:var(--accent); text-align:center; }
#reviews .section-label   { text-align:center; }
.reviews-sub {
  text-align:center; color:var(--text-muted); font-size:0.9rem;
  margin-bottom:2.75rem; display:flex; align-items:center;
  justify-content:center; gap:0.5rem; flex-wrap:wrap;
}
.apple-badge {
  display:inline-flex; align-items:center; gap:0.4rem;
  background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.12);
  border-radius:50px; padding:0.25rem 0.75rem;
  font-size:0.75rem; font-weight:700; color:rgba(255,255,255,0.7);
}
.star-rating { display:inline-flex; gap:2px; color:var(--accent); }
.star-rating svg { width:16px; height:16px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
}
.review-card {
  background:var(--bg-card); border:1px solid var(--border-card);
  border-radius:14px; padding:1.6rem; display:flex; flex-direction:column;
  gap:0.75rem; position:relative;
  transition:transform var(--transition), box-shadow var(--transition);
}
.review-card:hover { transform:translateY(-4px); box-shadow:0 14px 40px rgba(0,0,0,0.4); }
.review-card-sticker {
  position:absolute; top:-18px; right:-14px; width:52px; height:52px;
  border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-size:1.3rem; border:3px solid var(--bg-deeper);
  animation:sticker-float-a 4s ease-in-out infinite;
}
.review-card-sticker--a { background:var(--sticker-yellow); animation-delay:0s; }
.review-card-sticker--b { background:var(--sticker-pink);   animation-delay:0.6s; }
.review-card-sticker--c { background:var(--sticker-green);  animation-delay:1.2s; }
.review-card-sticker--d { background:var(--sticker-orange); animation-delay:1.8s; }
.review-title  { font-family:var(--font-display); font-size:1rem; color:var(--accent); line-height:1.3; }
.review-body   { font-size:0.86rem; color:rgba(255,255,255,0.82); line-height:1.65; flex:1; }
.review-author { font-size:0.76rem; color:var(--text-muted); font-weight:700; letter-spacing:0.04em; display:flex; align-items:center; gap:0.4rem; }
.review-author::before { content:'—'; color:var(--accent); }
.review-source {
  display:inline-flex; align-items:center; gap:0.3rem;
  background:rgba(255,255,255,0.04); border-radius:50px;
  padding:0.2rem 0.6rem; font-size:0.68rem; font-weight:700;
  color:var(--text-muted); letter-spacing:0.06em; text-transform:uppercase;
  border:1px solid rgba(255,255,255,0.08); align-self:flex-start;
}
.overall-rating { text-align:center; margin-bottom:2rem; }
.overall-score  { font-family:var(--font-stamp); font-size:5rem; color:var(--accent); line-height:1; }
.overall-label  { color:var(--text-muted); font-size:0.82rem; margin-top:0.25rem; }

/* ======================================================
   ░░ ABOUT — Story Section
   ====================================================== */
.about-story-section { background: var(--bg-light); padding: var(--section-pad) 0; }
.about-story-section .section-label   { color: var(--bg-card); }
.about-story-section .section-heading { color: var(--bg-dark); }
.about-story-section p { color: var(--text-dark); margin-bottom: 1.2rem; line-height: 1.82; font-size: 0.97rem; max-width: 760px; }
.story-grid { display:grid; grid-template-columns:1.1fr 1fr; gap:5rem; align-items:start; }
.story-image-col img { width:100%; border-radius:14px; border:3px solid var(--bg-dark); object-fit:cover; }
.mission-bar { background:var(--accent); padding:3rem 0; text-align:center; }
.mission-bar blockquote {
  font-family:var(--font-display); font-size:clamp(1.3rem,3vw,2rem);
  color:var(--text-dark); max-width:780px; margin:0 auto;
  line-height:1.4; font-style:italic; padding:0 1.5rem;
}
.mission-bar cite {
  display:block; font-family:var(--font-body); font-style:normal;
  font-size:0.82rem; font-weight:700; letter-spacing:0.1em;
  text-transform:uppercase; color:var(--text-dark); opacity:0.65; margin-top:1rem;
}

/* ======================================================
   ░░ PLATFORM CARDS
   ====================================================== */
#home-listen { background:var(--bg-deeper); }
#home-listen .section-heading { color:var(--text-white); }
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem; margin-top: 2.75rem;
}
.platform-card {
  display:flex; align-items:center; gap:1.1rem;
  background:rgba(255,255,255,0.04); border:1px solid var(--border-card);
  border-radius:var(--radius); padding:1.3rem 1.6rem;
  color:var(--text-white); font-weight:700; font-size:1rem; text-decoration:none;
  transition:background var(--transition), transform var(--transition), border-color var(--transition);
}
.platform-card:hover { background:rgba(244,211,94,0.08); transform:translateY(-3px); border-color:rgba(244,211,94,0.3); }
.platform-card svg { flex-shrink:0; }
.platform-card .platform-sub { display:block; font-size:0.75rem; font-weight:400; color:var(--text-muted); margin-top:0.15rem; }

/* ======================================================
   ░░ CONTACT / FORM
   ====================================================== */
#contact,.contact-page { background:var(--bg-dark); }
#contact .section-heading,.contact-page .section-heading { color:var(--text-white); }
.contact-grid { display:grid; grid-template-columns:1fr 1.4fr; gap:4rem; align-items:start; margin-top:3rem; }
.contact-info h3 { font-family:var(--font-display); font-size:1.5rem; color:var(--accent); margin-bottom:1rem; }
.contact-info p  { color:var(--text-muted); font-size:0.94rem; margin-bottom:1.5rem; line-height:1.75; }
.form-group { margin-bottom:1.4rem; }
.form-group label { display:block; font-size:0.82rem; font-weight:700; color:var(--text-muted); margin-bottom:0.45rem; letter-spacing:0.05em; text-transform:uppercase; }
.form-group input,.form-group textarea {
  width:100%; background:rgba(255,255,255,0.05);
  border:1.5px solid rgba(244,211,94,0.18); border-radius:8px;
  padding:0.88rem 1rem; color:var(--text-white);
  font-family:var(--font-body); font-size:0.95rem; outline:none;
  transition:border-color var(--transition), background var(--transition);
}
.form-group input::placeholder,.form-group textarea::placeholder { color:rgba(255,255,255,0.25); }
.form-group input:focus,.form-group textarea:focus { border-color:var(--accent); background:rgba(244,211,94,0.04); }
.form-group textarea { min-height:140px; resize:vertical; }
.form-submit-btn { width:100%; font-size:1rem; padding:0.92rem 1.75rem; justify-content:center; }
.form-success { display:none; background:rgba(244,211,94,0.1); border:1px solid var(--accent); color:var(--accent); border-radius:8px; padding:1rem; text-align:center; font-weight:600; margin-top:1rem; font-size:0.95rem; }

/* ======================================================
   ░░ FOOTER
   ====================================================== */
footer { background:var(--bg-deeper); border-top:1px solid rgba(244,211,94,0.1); padding:2.5rem 0; }
.footer-inner { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:1.5rem; }
.footer-logo img { height:40px; width:auto; }
.footer-center { text-align:center; font-size:0.81rem; color:rgba(255,255,255,0.45); line-height:1.8; }
.footer-credit { color:var(--accent); font-weight:700; }
.footer-credit a { color:var(--accent); }
.footer-credit a:hover { text-decoration:underline; }
.footer-right { display:flex; align-items:center; gap:0.8rem; }
.footer-right a { display:flex; align-items:center; color:var(--accent); transition:opacity var(--transition); }
.footer-right a:hover { opacity:0.7; }
.footer-right svg { width:22px; height:22px; }

/* TikTok */
.tiktok-embed-container { display:flex; justify-content:center; margin-top:2.5rem; }
.tiktok-embed-container blockquote { max-width:605px; width:100%; }

/* Media label */
.media-section-label { display:flex; align-items:center; gap:0.75rem; justify-content:center; margin-top:1.25rem; }
.media-section-label svg { width:26px; height:26px; flex-shrink:0; }
.media-section-label a { color:var(--text-muted); font-size:0.85rem; font-weight:600; transition:color var(--transition); }
.media-section-label a:hover { color:var(--accent); }

/* ======================================================
   ░░ RESPONSIVE BREAKPOINTS
   ====================================================== */
@media (max-width: 900px) {
  .story-grid    { grid-template-columns:1fr; gap:3rem; }
  .contact-grid  { grid-template-columns:1fr; gap:2.5rem; }
}
@media (max-width: 600px) {
  :root { --section-pad: 3.5rem; }
  .hero-btns      { flex-direction:column; align-items:center; }
  .footer-inner   { flex-direction:column; align-items:center; text-align:center; }
  .footer-right   { justify-content:center; }
  .footer-center  { order:2; }
  .platforms-grid { grid-template-columns:1fr; }
  .reviews-grid   { grid-template-columns:1fr; }
  .page-hero      { padding:3.5rem 0 2.5rem; }
  .overall-score  { font-size:3.5rem; }
  .host-pill-row  { gap:0.5rem; }
  .archive-grid   { grid-template-columns:1fr; }
}
@media (min-width: 1600px) { :root { --container-w: 1300px; } }
@media (min-width: 2000px) { :root { --container-w: 1400px; } body { font-size:1.05rem; } }
/* --- DYSON DIGITAL GOLD STANDARD: HERO & NAV FIX --- */

/* 1. Center the Hero and give it that 'Old Vibe' scale */
#hero {
    display: flex;
    flex-direction: column;
    align-items: center;    /* Centers horizontally */
    justify-content: center; /* Centers vertically */
    text-align: center;
    min-height: 85vh;
    position: relative;
    overflow: hidden;
}

/* 2. Scale the Logo larger for Desktop */
.hero-logo {
    width: 95%;
    max-width: 750px; 
    z-index: 10;
    position: relative;
}

/* 3. Orbiting Sticker Cluster */
.hero-sticker-cluster {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none; /* Allows clicking the logo through the graphics */
    z-index: 5;
}

/* 4. Fix the 'Ghost' X Button and Z-Index Stacking */
.mobile-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 1100; /* Stays ABOVE the menu and hero */
    font-size: 3rem;
    background: none;
    border: none;
    color: var(--accent);
    cursor: pointer;
    padding: 15px; /* Bigger hit area for thumbs */
}

.mobile-menu {
    z-index: 1050; /* Stays ABOVE the hero logo */
}

/* 5. Mobile Scaling (The 'No-Break' Rule) */
@media (max-width: 768px) {
    .hero-logo {
        max-width: 380px;
    }
    #hero {
        min-height: 60vh;
    }
}
