/* =========================================================
   DREMO - Drama. Stories. Connections.
   Shared stylesheet
   ========================================================= */

:root {
  --bg: #0a0510;
  --bg-2: #120821;
  --bg-3: #1a0f2e;
  --surface: #1f1333;
  --surface-2: #2a1a44;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);

  --text: #ffffff;
  --text-2: #c8bcd6;
  --text-3: #8a7da0;

  --primary: #ff2d6f;
  --primary-2: #ff5e95;
  --secondary: #8b5cf6;
  --accent: #ffb800;
  --success: #22c55e;

  --grad-hero: linear-gradient(135deg, #ff7a18 0%, #ff2d6f 35%, #c026d3 70%, #6d28d9 100%);
  --grad-card-1: linear-gradient(135deg, #ff2d6f 0%, #8b5cf6 100%);
  --grad-card-2: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  --grad-card-3: linear-gradient(135deg, #06b6d4 0%, #8b5cf6 100%);
  --grad-card-4: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
  --grad-card-5: linear-gradient(135deg, #ec4899 0%, #f97316 100%);
  --grad-card-6: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;

  --shadow-soft: 0 10px 30px rgba(0,0,0,0.35);
  --shadow-strong: 0 20px 60px rgba(0,0,0,0.55);
}

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

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(1200px 600px at 80% -200px, rgba(139, 92, 246, 0.18), transparent),
    radial-gradient(1000px 500px at 0% 200px, rgba(255, 45, 111, 0.15), transparent),
    var(--bg);
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =================== TOP NAV =================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(10, 5, 16, 0.72);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 72px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 900; font-size: 26px; letter-spacing: -0.5px;
  flex-shrink: 0;
}
.logo-img {
  display: block;
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(255, 45, 111, 0.25));
}
footer .logo-img { height: 64px; max-width: 280px; }
@media (max-width: 640px) {
  .logo-img { height: 38px; max-width: 160px; }
}

.nav-links { display: flex; gap: 4px; flex: 1; }
.nav-links a {
  padding: 10px 14px; border-radius: 10px;
  color: var(--text-2); font-weight: 500; font-size: 15px;
  transition: all 0.18s ease;
}
.nav-links a:hover { color: var(--text); background: var(--surface); }
.nav-links a.active { color: var(--text); background: var(--surface-2); }

.search-box {
  display: flex; align-items: center; gap: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 9px 14px;
  border-radius: 999px;
  width: 280px;
}
.search-box input {
  background: transparent; border: none; outline: none; color: var(--text);
  font-size: 14px; width: 100%;
}
.search-box svg { opacity: 0.6; flex-shrink: 0; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 700; font-size: 14px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-hero);
  color: white;
  box-shadow: 0 10px 24px rgba(255, 45, 111, 0.4);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 14px 30px rgba(255, 45, 111, 0.55); }
.btn-ghost {
  background: var(--surface);
  border: 1px solid var(--line-2);
  color: var(--text);
}
.btn-ghost:hover { background: var(--surface-2); }
.btn-lg { padding: 16px 32px; font-size: 16px; }

/* =================== HERO =================== */
.hero {
  position: relative;
  margin-top: 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 480px;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: linear-gradient(135deg, #2a0a3e 0%, #14062a 60%, #0a0510 100%);
  border: 1px solid var(--line);
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(600px 400px at 20% 30%, rgba(255, 45, 111, 0.35), transparent),
    radial-gradient(500px 400px at 80% 70%, rgba(139, 92, 246, 0.35), transparent);
}
.hero-content {
  padding: 60px 56px;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 184, 0, 0.14);
  color: var(--accent);
  border: 1px solid rgba(255, 184, 0, 0.4);
  padding: 6px 14px; border-radius: 999px;
  font-weight: 700; font-size: 12px; letter-spacing: 0.5px;
  width: fit-content;
  margin-bottom: 18px;
}
.hero-title {
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}
.hero-title em {
  font-style: normal;
  background: var(--grad-hero);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-meta {
  display: flex; gap: 18px; align-items: center;
  color: var(--text-2);
  font-size: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  padding: 4px 10px; border-radius: 999px;
  font-size: 12px; font-weight: 600;
  color: var(--text-2);
}
.hero-desc {
  color: var(--text-2);
  font-size: 17px;
  max-width: 540px;
  margin-bottom: 28px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-poster {
  position: relative;
  display: grid;
  place-items: center;
  padding: 40px;
}
.poster-frame {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  transform: rotate(2deg);
  transition: transform 0.4s ease;
}
.poster-frame:hover { transform: rotate(0deg) scale(1.03); }

/* =================== POSTER ART =================== */
.poster {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.poster::before {
  content: '';
  position: absolute; inset: 0;
  /* Subtle bottom darken so badges are readable; titles are baked into the artwork */
  background: linear-gradient(180deg, transparent 65%, rgba(0,0,0,0.45) 100%);
  z-index: 1;
  pointer-events: none;
}
.poster-info {
  position: relative; z-index: 2;
  width: 100%;
}
.poster-title {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 4px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.poster-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}
.poster-badge {
  position: absolute; top: 10px; left: 10px; z-index: 3;
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 9px;
  border-radius: 6px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.5px;
  text-transform: uppercase;
}
.badge-hot { background: linear-gradient(135deg, #ffb800, #ff5e00); color: #1a0f2e; }
.badge-new { background: var(--success); color: white; }
.badge-top { background: var(--primary); color: white; }
.badge-original { background: rgba(0,0,0,0.65); border: 1px solid rgba(255,255,255,0.35); color: white; backdrop-filter: blur(8px); }

.poster-eps {
  position: absolute; bottom: 10px; right: 10px; z-index: 3;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 11px; font-weight: 600;
  color: white;
}

/* =================== SECTIONS =================== */
section { margin: 64px 0; }
.section-head {
  display: flex; align-items: end; justify-content: space-between;
  margin-bottom: 22px; gap: 16px;
}
.section-title {
  font-size: 28px; font-weight: 800; letter-spacing: -0.5px;
  display: flex; align-items: center; gap: 10px;
}
.section-title .accent {
  background: var(--grad-hero);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-sub { color: var(--text-3); font-size: 14px; margin-top: 4px; }
.section-link {
  color: var(--text-2); font-weight: 600; font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 8px;
  transition: background 0.15s;
}
.section-link:hover { background: var(--surface); color: var(--text); }

/* =================== CATEGORY CHIPS =================== */
.category-bar {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  margin-bottom: 24px;
  scrollbar-width: none;
}
.category-bar::-webkit-scrollbar { display: none; }
.cat-chip {
  flex-shrink: 0;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px; font-weight: 600;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text-2);
  transition: all 0.15s;
}
.cat-chip:hover { background: var(--surface-2); color: var(--text); }
.cat-chip.active {
  background: var(--grad-hero);
  border-color: transparent;
  color: white;
  box-shadow: 0 6px 16px rgba(255, 45, 111, 0.35);
}

/* =================== POSTER GRID =================== */
.poster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 18px;
}
.poster-grid.compact {
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
}

.show-card {
  cursor: pointer;
  transition: transform 0.2s ease;
}
.show-card:hover { transform: translateY(-4px); }
.show-card .poster-frame {
  width: 100%;
  max-width: none;
  transform: none;
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius);
}
.show-card:hover .poster-frame {
  box-shadow: 0 18px 40px rgba(255, 45, 111, 0.25);
}
.show-meta { padding: 12px 4px 0; }
.show-name {
  font-size: 15px; font-weight: 700;
  line-height: 1.3;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.show-tags {
  display: flex; gap: 6px; align-items: center;
  font-size: 12px; color: var(--text-3);
}
.show-tags .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--text-3); }
.show-rating { color: var(--accent); font-weight: 700; }

/* =================== TRENDING (numbered) =================== */
.trending-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.trending-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  transition: all 0.18s;
  cursor: pointer;
}
.trending-card:hover { background: var(--surface-2); transform: translateX(4px); }
.trending-num {
  font-size: 56px; font-weight: 900;
  background: var(--grad-hero);
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.15);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
  text-align: center;
}
.trending-poster {
  width: 64px;
  aspect-ratio: 9/16;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.trending-poster .poster::before { background: transparent; }
.trending-info { flex: 1; min-width: 0; }
.trending-name { font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.trending-tags { font-size: 12px; color: var(--text-3); }

/* =================== CATEGORIES SHOWCASE =================== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.cat-tile {
  position: relative;
  aspect-ratio: 5/3;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  transition: transform 0.2s;
}
.cat-tile:hover { transform: translateY(-3px); }
.cat-tile::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.7) 100%);
}
.cat-tile-icon {
  position: absolute; top: 14px; right: 14px;
  font-size: 36px; opacity: 0.4;
}
.cat-tile-title {
  position: relative; z-index: 1;
  font-size: 22px; font-weight: 800;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}
.cat-tile-count {
  position: relative; z-index: 1;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}
.bg-grad-1 { background: var(--grad-card-1); }
.bg-grad-2 { background: var(--grad-card-2); }
.bg-grad-3 { background: var(--grad-card-3); }
.bg-grad-4 { background: var(--grad-card-4); }
.bg-grad-5 { background: var(--grad-card-5); }
.bg-grad-6 { background: var(--grad-card-6); }
.bg-grad-7 { background: linear-gradient(135deg, #1e3a8a, #db2777); }
.bg-grad-8 { background: linear-gradient(135deg, #064e3b, #f59e0b); }

/* =================== APP CTA =================== */
.app-cta {
  margin: 96px 0 64px;
  padding: 56px 48px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #1f0f3a 0%, #2a0a3e 100%);
  border: 1px solid var(--line-2);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
.app-cta::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(500px 300px at 90% 50%, rgba(255, 45, 111, 0.25), transparent),
    radial-gradient(400px 300px at 10% 90%, rgba(139, 92, 246, 0.2), transparent);
}
.app-cta-content { position: relative; z-index: 1; }
.app-cta h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 12px;
  line-height: 1.1;
}
.app-cta p {
  color: var(--text-2);
  font-size: 17px;
  margin-bottom: 26px;
  max-width: 460px;
}
.store-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 22px;
  background: white;
  color: #0a0510;
  border-radius: 12px;
  font-weight: 700;
  transition: transform 0.15s;
}
.store-btn:hover { transform: translateY(-2px); }
.store-btn small {
  display: block;
  font-size: 11px; font-weight: 500;
  color: rgba(0,0,0,0.6);
  margin-bottom: -2px;
}
.app-cta-phones {
  position: relative;
  display: grid; place-items: center;
  z-index: 1;
}
.phone {
  width: 200px;
  aspect-ratio: 9/19;
  background: #0a0510;
  border-radius: 28px;
  border: 6px solid #2a1a44;
  box-shadow: var(--shadow-strong);
  position: relative;
  overflow: hidden;
  transform: rotate(-4deg);
}
.phone .poster { padding: 12px; height: 100%; }

/* =================== FOOTER =================== */
footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 32px;
  margin-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.footer-col h4 {
  font-size: 13px; font-weight: 700; letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  color: var(--text-2);
  font-size: 14px;
  padding: 6px 0;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--text); }
.footer-brand p { color: var(--text-3); font-size: 14px; margin-top: 12px; max-width: 320px; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--text-3); font-size: 13px;
  flex-wrap: wrap; gap: 12px;
}

/* =================== SERIES DETAIL PAGE =================== */
.series-hero {
  position: relative;
  margin-top: 28px;
  padding: 56px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
  background: linear-gradient(135deg, #1a0533 0%, #0a0510 100%);
}
.series-hero-bg {
  position: absolute; inset: 0; z-index: -1;
  opacity: 0.4;
  filter: blur(40px) saturate(1.4);
  transform: scale(1.2);
  background-size: cover;
  background-position: center;
}
.series-poster-wrap { padding-left: 48px; }
.series-poster-wrap .poster-frame {
  transform: none;
  box-shadow: var(--shadow-strong);
}
.series-info { padding-right: 48px; }
.series-info h1 {
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 16px;
}
.series-meta {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  color: var(--text-2);
  font-size: 14px;
}
.rating-stars {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--accent);
  font-weight: 700;
}
.series-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.series-desc {
  color: var(--text-2);
  font-size: 16px;
  max-width: 720px;
  margin-bottom: 28px;
}
.series-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.episodes-section { margin-top: 48px; }
.eps-tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.eps-tab {
  padding: 12px 18px;
  font-weight: 600;
  color: var(--text-3);
  border-bottom: 2px solid transparent;
  transition: all 0.15s;
  cursor: pointer;
}
.eps-tab:hover { color: var(--text-2); }
.eps-tab.active {
  color: var(--text);
  border-bottom-color: var(--primary);
}

.eps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}
.eps-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  display: flex; gap: 14px;
  cursor: pointer;
  transition: all 0.18s;
}
.eps-card:hover { background: var(--surface-2); transform: translateY(-2px); }
.eps-thumb {
  width: 80px; aspect-ratio: 9/16;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}
.eps-thumb .poster::before { background: transparent; }
.eps-thumb-num {
  position: absolute; bottom: 6px; left: 6px;
  background: rgba(0,0,0,0.7);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 10px; font-weight: 800;
  z-index: 4;
}
.eps-info { flex: 1; min-width: 0; padding-top: 4px; }
.eps-title { font-weight: 700; font-size: 14px; margin-bottom: 6px; line-height: 1.3; }
.eps-desc {
  font-size: 12px; color: var(--text-3);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.eps-lock {
  margin-top: 8px;
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 700;
  color: var(--accent);
}

/* =================== WATCH PAGE =================== */
.watch-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  margin-top: 32px;
  align-items: start;
}
.player-stage {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #14062a 0%, #0a0510 100%);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--line);
  min-height: 720px;
  position: relative;
}
.player-frame {
  width: 360px;
  aspect-ratio: 9/16;
  background: #000;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-strong);
}
.player-poster {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end;
  padding: 20px;
  background-size: cover;
  background-position: center;
}
.player-poster::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, transparent 30%, transparent 60%, rgba(0,0,0,0.85) 100%);
}
.player-overlay-top {
  position: absolute; top: 0; left: 0; right: 0;
  z-index: 5;
  padding: 16px 18px;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(180deg, rgba(0,0,0,0.6), transparent);
}
.player-back {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  display: grid; place-items: center;
  cursor: pointer;
}
.player-ep-label {
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px; font-weight: 700;
}
.play-button {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: grid; place-items: center;
  z-index: 5;
  cursor: pointer;
  transition: transform 0.2s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.play-button:hover { transform: translate(-50%, -50%) scale(1.08); }
.play-button svg { fill: #0a0510; }

.player-info {
  position: relative; z-index: 4;
  width: 100%;
  color: white;
  padding-bottom: 12px;
}
.player-info h3 { font-size: 17px; font-weight: 800; margin-bottom: 4px; }
.player-info p { font-size: 13px; color: rgba(255,255,255,0.85); line-height: 1.4; }

.player-progress {
  position: relative; z-index: 4;
  margin-top: 14px;
  height: 3px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  overflow: hidden;
}
.player-progress-bar {
  height: 100%;
  width: 38%;
  background: var(--primary);
  border-radius: 2px;
}
.player-side-actions {
  position: absolute;
  right: 14px; bottom: 90px;
  z-index: 5;
  display: flex; flex-direction: column;
  gap: 22px;
  align-items: center;
}
.side-action {
  display: flex; flex-direction: column;
  align-items: center; gap: 4px;
  cursor: pointer;
}
.side-action-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  display: grid; place-items: center;
  font-size: 22px;
  transition: background 0.15s;
}
.side-action:hover .side-action-btn { background: rgba(255, 45, 111, 0.5); }
.side-action small { font-size: 11px; font-weight: 700; }

.watch-sidebar {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.watch-sidebar h3 { font-size: 18px; font-weight: 800; margin-bottom: 4px; }
.watch-sidebar .meta { color: var(--text-3); font-size: 13px; margin-bottom: 18px; }
.ep-list {
  display: flex; flex-direction: column;
  gap: 8px;
  max-height: 480px;
  overflow-y: auto;
  padding-right: 4px;
}
.ep-list::-webkit-scrollbar { width: 6px; }
.ep-list::-webkit-scrollbar-thumb { background: var(--surface-2); border-radius: 3px; }
.ep-row {
  display: flex; align-items: center; gap: 12px;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s;
}
.ep-row:hover { background: var(--bg-2); }
.ep-row.current { background: var(--bg-3); border: 1px solid var(--primary); }
.ep-row-num {
  width: 28px;
  font-weight: 800;
  color: var(--text-3);
  flex-shrink: 0;
  text-align: center;
}
.ep-row.current .ep-row-num { color: var(--primary); }
.ep-row-thumb {
  width: 50px; aspect-ratio: 9/16;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.ep-row-thumb .poster::before { background: transparent; }
.ep-row-info { flex: 1; min-width: 0; }
.ep-row-info h5 { font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.ep-row-info span { font-size: 11px; color: var(--text-3); }
.ep-row-icon { font-size: 14px; color: var(--text-3); }
.ep-row.current .ep-row-icon { color: var(--primary); }

.coin-banner {
  margin-top: 20px;
  padding: 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,184,0,0.15), rgba(255,94,0,0.15));
  border: 1px solid rgba(255,184,0,0.3);
}
.coin-banner h4 {
  font-size: 14px; font-weight: 800;
  color: var(--accent);
  margin-bottom: 4px;
  display: flex; align-items: center; gap: 6px;
}
.coin-banner p { font-size: 12px; color: var(--text-2); margin-bottom: 12px; }
.coin-banner button {
  width: 100%;
  padding: 10px;
  background: linear-gradient(135deg, #ffb800, #ff5e00);
  color: #1a0f2e;
  border-radius: 8px;
  font-weight: 800;
  font-size: 13px;
}

/* =================== BROWSE PAGE =================== */
.browse-header { margin-top: 28px; margin-bottom: 28px; }
.browse-header h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 8px;
}
.browse-header p { color: var(--text-2); }

.filter-row {
  display: flex; gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.filter-select {
  padding: 10px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c8bcd6' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

/* =================== COMMENTS / COMMUNITY =================== */
.community-section { margin-top: 56px; }
.comments-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.comments-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px; gap: 16px; flex-wrap: wrap;
}
.comments-title {
  font-size: 22px; font-weight: 800;
  display: flex; align-items: center; gap: 10px;
}
.comments-count {
  background: var(--bg-3);
  padding: 4px 12px; border-radius: 999px;
  font-size: 13px; color: var(--text-2); font-weight: 700;
}
.comment-sort { display: flex; gap: 6px; flex-wrap: wrap; }
.sort-btn {
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  background: var(--bg-2); color: var(--text-2);
  border: 1px solid var(--line);
}
.sort-btn.active { background: var(--primary); color: white; border-color: transparent; }

.comment-input-wrap {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 18px;
  background: var(--bg-2);
  border-radius: 14px;
  margin-bottom: 24px;
}
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800; font-size: 14px;
  color: white;
  flex-shrink: 0;
}
.avatar-lg { width: 48px; height: 48px; font-size: 16px; }
.avatar.av-1 { background: linear-gradient(135deg, #ff2d6f, #ff7a18); }
.avatar.av-2 { background: linear-gradient(135deg, #8b5cf6, #ec4899); }
.avatar.av-3 { background: linear-gradient(135deg, #06b6d4, #8b5cf6); }
.avatar.av-4 { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.avatar.av-5 { background: linear-gradient(135deg, #10b981, #06b6d4); }
.avatar.av-6 { background: linear-gradient(135deg, #ec4899, #f97316); }

.comment-input {
  flex: 1;
  background: transparent;
  border: none; outline: none;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  resize: vertical;
  min-height: 24px;
  width: 100%;
}
.comment-input::placeholder { color: var(--text-3); }
.comment-input-bar {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 12px;
}
.comment-input-tools {
  display: flex; gap: 6px;
  color: var(--text-3); font-size: 18px;
}
.comment-input-tools span {
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 6px;
  transition: background 0.15s;
}
.comment-input-tools span:hover { background: var(--surface-2); }

.comments-list {
  display: flex; flex-direction: column;
  gap: 22px;
}
.comment {
  display: flex; gap: 14px;
  align-items: flex-start;
}
.comment-body { flex: 1; min-width: 0; }
.comment-head {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}
.comment-author { font-weight: 700; font-size: 14px; }
.comment-flair {
  font-size: 10px; font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.flair-superfan { background: linear-gradient(135deg, #ff2d6f, #c026d3); color: white; }
.flair-creator { background: linear-gradient(135deg, #ffb800, #ff7a18); color: #1a0f2e; }
.flair-team { background: var(--secondary); color: white; }
.comment-time { font-size: 12px; color: var(--text-3); }
.comment-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 8px;
}
.comment-actions {
  display: flex; gap: 18px; flex-wrap: wrap;
  font-size: 13px; color: var(--text-3); font-weight: 600;
}
.comment-actions span {
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 5px;
  transition: color 0.15s;
}
.comment-actions span:hover { color: var(--text); }
.comment-actions .liked { color: var(--primary); }
.comment-replies {
  margin-top: 14px;
  display: flex; flex-direction: column; gap: 16px;
}
.comment-reply {
  display: flex; gap: 12px;
  padding-left: 24px;
  border-left: 2px solid var(--line);
}

/* =================== COMMUNITY HUB CARDS =================== */
.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.community-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  transition: all 0.18s;
  cursor: pointer;
}
.community-card:hover { background: var(--surface-2); transform: translateY(-3px); }
.community-card-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 22px;
  background: var(--bg-3);
  margin-bottom: 14px;
}
.community-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 6px; }
.community-card p { font-size: 14px; color: var(--text-2); line-height: 1.5; }
.community-meta {
  margin-top: 14px;
  font-size: 12px; color: var(--text-3);
  font-weight: 700;
  display: flex; align-items: center; gap: 6px;
}

/* =================== VALUE PROPS / PILLARS =================== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}
.pillar {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-3) 100%);
  border: 1px solid var(--line);
}
.pillar-num {
  font-size: 13px; font-weight: 800;
  background: var(--grad-hero);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.pillar h3 {
  font-size: 22px; font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.pillar p { color: var(--text-2); font-size: 15px; line-height: 1.6; }
.pillar-strike {
  text-decoration: line-through;
  color: var(--text-3);
  font-size: 14px;
  margin-right: 6px;
}

/* =================== SOCIAL BUZZ STRIP =================== */
.buzz-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 20px;
}
.buzz-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  display: flex; flex-direction: column; gap: 10px;
}
.buzz-head { display: flex; align-items: center; gap: 10px; }
.buzz-name { font-weight: 700; font-size: 14px; }
.buzz-handle { color: var(--text-3); font-size: 12px; }
.buzz-text { font-size: 14px; color: var(--text); line-height: 1.5; }
.buzz-meta {
  display: flex; gap: 16px;
  color: var(--text-3); font-size: 12px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

/* =================== CINEMATIC HERO 2.0 =================== */
.hero-v2 {
  position: relative;
  margin-top: 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 640px;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: linear-gradient(135deg, #1a0533 0%, #14062a 50%, #0a0510 100%);
  border: 1px solid var(--line);
}
.hero-v2::before {
  content:'';
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(800px 500px at 15% 25%, rgba(255, 45, 111, 0.30), transparent),
    radial-gradient(700px 500px at 95% 85%, rgba(139, 92, 246, 0.30), transparent),
    radial-gradient(500px 400px at 50% 50%, rgba(255, 122, 24, 0.10), transparent);
  animation: bgDrift 18s ease-in-out infinite alternate;
}
@keyframes bgDrift {
  0%   { transform: scale(1) translate(0,0); }
  100% { transform: scale(1.08) translate(-2%, 1%); }
}
.hero-v2-content {
  position: relative; z-index: 2;
  padding: 60px 56px;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-v2-title {
  font-size: clamp(40px, 5.4vw, 68px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -2px;
  margin-bottom: 18px;
}
.hero-v2-title em {
  font-style: normal;
  background: linear-gradient(135deg, #ff7a18 0%, #ff2d6f 45%, #c026d3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 20px rgba(255, 45, 111, 0.4));
}
.hero-v2-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--text-2);
  max-width: 540px;
  margin-bottom: 30px;
  line-height: 1.5;
}
.hero-v2-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.btn-glow {
  position: relative;
  background: linear-gradient(135deg, #ff7a18 0%, #ff2d6f 50%, #c026d3 100%);
  color: white;
  box-shadow:
    0 10px 30px rgba(255, 45, 111, 0.45),
    0 0 0 0 rgba(255, 45, 111, 0.6);
  animation: btnGlow 2.2s ease-in-out infinite;
}
.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(255, 45, 111, 0.6);
}
@keyframes btnGlow {
  0%, 100% { box-shadow: 0 10px 30px rgba(255, 45, 111, 0.45), 0 0 0 0 rgba(255, 45, 111, 0.6); }
  50%      { box-shadow: 0 10px 30px rgba(255, 45, 111, 0.45), 0 0 0 12px rgba(255, 45, 111, 0); }
}
.social-proof-row {
  display: flex; gap: 28px; flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.social-proof-stat .num {
  display: block;
  font-size: 24px; font-weight: 900;
  background: linear-gradient(135deg, #fff, #ffd1e0);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 4px;
}
.social-proof-stat .lbl {
  font-size: 12px; color: var(--text-3);
  font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
}

/* =================== PHONE MOCKUP — ANIMATED =================== */
.hero-v2-mockup {
  position: relative; z-index: 2;
  display: grid; place-items: center;
  padding: 40px 20px;
}
.phone-mockup {
  position: relative;
  width: 320px;
  aspect-ratio: 9 / 19.5;
  background: #0a0510;
  border-radius: 38px;
  border: 7px solid #1a0a2e;
  box-shadow:
    0 30px 80px rgba(255, 45, 111, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  overflow: hidden;
}
.phone-mockup::before {
  /* notch */
  content: '';
  position: absolute; top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 22px;
  background: #000;
  border-radius: 0 0 14px 14px;
  z-index: 30;
}
.phone-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
.phone-overlay {
  position: absolute; inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, transparent 25%, transparent 55%, rgba(0,0,0,0.92) 100%);
  pointer-events: none;
}
.phone-top {
  position: absolute; top: 38px; left: 0; right: 0;
  z-index: 5;
  padding: 0 16px;
  display: flex; align-items: center; justify-content: space-between;
}
.phone-watching {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px; font-weight: 700; color: #fff;
}
.phone-watching .dot {
  width: 7px; height: 7px;
  background: #ff2d6f;
  border-radius: 50%;
  animation: livePulse 1.4s infinite;
  box-shadow: 0 0 8px rgba(255, 45, 111, 0.8);
}
.phone-ep-pill {
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px; font-weight: 700;
}
.phone-sidebar {
  position: absolute;
  right: 12px; bottom: 130px;
  z-index: 6;
  display: flex; flex-direction: column;
  gap: 18px; align-items: center;
}
.phone-side-btn {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.phone-side-btn .ico {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(10px);
  display: grid; place-items: center;
  font-size: 22px;
  transition: transform 0.2s;
}
.phone-side-btn .ico:hover { transform: scale(1.1); }
.phone-side-btn small { font-size: 10px; font-weight: 800; }
.phone-side-btn .heart-pop {
  background: rgba(255, 45, 111, 0.85);
  animation: heartBeat 1.8s infinite;
}
@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  10%      { transform: scale(1.2); }
  20%      { transform: scale(0.95); }
  30%      { transform: scale(1.15); }
  40%      { transform: scale(1); }
}

/* Floating hearts */
.phone-hearts {
  position: absolute;
  right: 28px; bottom: 180px;
  z-index: 5;
  width: 60px; height: 280px;
  pointer-events: none;
}
.phone-hearts span {
  position: absolute;
  bottom: 0; left: 0;
  font-size: 22px;
  opacity: 0;
  animation: floatHeart 4s ease-in infinite;
  filter: drop-shadow(0 0 8px rgba(255, 45, 111, 0.6));
}
.phone-hearts span:nth-child(1) { left: 6px;  animation-delay: 0s;   }
.phone-hearts span:nth-child(2) { left: 22px; animation-delay: 1.2s; }
.phone-hearts span:nth-child(3) { left: 34px; animation-delay: 2.4s; font-size: 18px; }
.phone-hearts span:nth-child(4) { left: 14px; animation-delay: 0.6s; font-size: 16px; }
.phone-hearts span:nth-child(5) { left: 28px; animation-delay: 3.0s; font-size: 24px; }
@keyframes floatHeart {
  0%   { opacity: 0; transform: translateY(0) scale(0.6); }
  15%  { opacity: 1; transform: translateY(-30px) scale(1); }
  60%  { opacity: 0.85; transform: translateY(-180px) scale(1.1); }
  100% { opacity: 0; transform: translateY(-260px) scale(0.6); }
}

/* Scrolling comments inside phone */
.phone-comments {
  position: absolute;
  left: 14px; bottom: 130px;
  z-index: 5;
  width: 64%;
  height: 130px;
  overflow: hidden;
  mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 100%);
}
.phone-comments-track {
  display: flex; flex-direction: column; gap: 8px;
  animation: commentsRoll 16s linear infinite;
}
.phone-comment {
  display: flex; gap: 8px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  padding: 8px 10px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 12px; color: #fff;
  line-height: 1.3;
  flex-shrink: 0;
}
.phone-comment-avatar {
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800; font-size: 10px; color: white;
  flex-shrink: 0;
}
.pc-1 { background: linear-gradient(135deg,#ff2d6f,#ff7a18); }
.pc-2 { background: linear-gradient(135deg,#8b5cf6,#ec4899); }
.pc-3 { background: linear-gradient(135deg,#06b6d4,#8b5cf6); }
.pc-4 { background: linear-gradient(135deg,#f59e0b,#ef4444); }
.pc-5 { background: linear-gradient(135deg,#10b981,#06b6d4); }
.pc-6 { background: linear-gradient(135deg,#ec4899,#f97316); }
.phone-comment b { font-weight: 700; }
@keyframes commentsRoll {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.phone-progress {
  position: absolute; left: 14px; right: 14px; bottom: 96px;
  z-index: 5;
  height: 3px;
  background: rgba(255,255,255,0.18);
  border-radius: 2px;
  overflow: hidden;
}
.phone-progress-bar {
  height: 100%;
  width: 42%;
  background: linear-gradient(90deg, #ff7a18, #ff2d6f, #c026d3);
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(255, 45, 111, 0.7);
  animation: progressGrow 18s linear infinite;
}
@keyframes progressGrow {
  0%   { width: 12%; }
  100% { width: 92%; }
}

.phone-cta {
  position: absolute; left: 14px; right: 14px; bottom: 30px;
  z-index: 6;
  padding: 12px 14px;
  background: linear-gradient(135deg, #ff7a18 0%, #ff2d6f 50%, #c026d3 100%);
  border-radius: 14px;
  font-weight: 800; font-size: 14px;
  color: white;
  text-align: center;
  box-shadow: 0 8px 28px rgba(255, 45, 111, 0.55);
  animation: ctaPulse 2.2s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.03); }
}
.phone-swipe-hint {
  position: absolute;
  right: -10px; top: 50%;
  transform: translateY(-50%);
  z-index: 7;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: white; font-size: 10px; font-weight: 700;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
  opacity: 0.85;
  pointer-events: none;
}
.phone-swipe-hint .swipe-arrow {
  font-size: 18px;
  animation: swipeBob 1.6s ease-in-out infinite;
}
@keyframes swipeBob {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50%      { transform: translateY(-6px); opacity: 1; }
}

/* Floating notification cards — anchored around the phone, never over hero text */
.notif-stack {
  position: absolute;
  z-index: 3;
  display: flex; flex-direction: column;
  gap: 12px;
  pointer-events: none;
  max-width: 260px;
}
/* .left = top-left of the PHONE column (right half of the hero) */
.notif-stack.left  { left: 52%; top: 10%; }
/* .right = bottom-right, beside the phone */
.notif-stack.right { right: 4%; bottom: 8%; }
.notif {
  background: rgba(31, 19, 51, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.5);
  opacity: 0;
  animation: notifIn 6s ease-in-out infinite;
  white-space: nowrap;
  font-size: 13px;
}
.notif:nth-child(1) { animation-delay: 0s;   }
.notif:nth-child(2) { animation-delay: 2s;   }
.notif:nth-child(3) { animation-delay: 4s;   }
@keyframes notifIn {
  0%   { opacity: 0; transform: translateX(-20px); }
  10%  { opacity: 1; transform: translateX(0); }
  85%  { opacity: 1; transform: translateX(0); }
  100% { opacity: 0; transform: translateX(20px); }
}
.notif .nico {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 14px;
  background: var(--bg-3);
  flex-shrink: 0;
}
.notif b { font-weight: 700; }
.notif span.muted { color: var(--text-3); font-size: 11px; display: block; margin-top: 1px; }

/* =================== LIVE TICKER (full-width marquee) =================== */
.ticker-bar {
  margin-top: 18px;
  background: linear-gradient(90deg, rgba(255,45,111,0.10), rgba(139,92,246,0.10));
  border: 1px solid rgba(255,45,111,0.25);
  border-radius: 999px;
  padding: 10px 18px;
  display: flex; align-items: center;
  overflow: hidden;
  position: relative;
}
.ticker-bar::before {
  content: '🔴 LIVE NOW';
  font-size: 11px; font-weight: 800; letter-spacing: 1.5px;
  color: #ff2d6f;
  padding-right: 18px; margin-right: 18px;
  border-right: 1px solid rgba(255,255,255,0.12);
  flex-shrink: 0;
}
.ticker-track {
  display: inline-flex;
  white-space: nowrap;
  gap: 36px;
  animation: tickerSlide 30s linear infinite;
}
.ticker-track span {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text-2);
  font-size: 13px; font-weight: 600;
}
.ticker-track b { color: var(--text); }
@keyframes tickerSlide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =================== VIDEO SHOWCASE GRID =================== */
.video-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}
.video-card {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  background: #000;
  box-shadow: 0 12px 28px rgba(0,0,0,0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.video-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 26px 50px rgba(255, 45, 111, 0.35);
}
.video-card video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
.video-card::after {
  content: '';
  position: absolute; inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, transparent 25%, transparent 55%, rgba(0,0,0,0.9) 100%);
  pointer-events: none;
}
.video-card .vc-tag {
  position: absolute; top: 12px; left: 12px;
  z-index: 3;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px; font-weight: 700;
  border: 1px solid rgba(255,255,255,0.18);
}
.video-card .vc-ep {
  position: absolute; top: 12px; right: 12px;
  z-index: 3;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px; font-weight: 800;
}
.video-card .vc-info {
  position: absolute; bottom: 14px; left: 14px; right: 14px;
  z-index: 3;
  color: white;
}
.video-card .vc-title {
  font-size: 15px; font-weight: 800; line-height: 1.2;
  margin-bottom: 6px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}
.video-card .vc-stats {
  display: flex; gap: 12px;
  font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.95);
}
.video-card .vc-stats span { display: inline-flex; align-items: center; gap: 3px; }
.video-card .vc-mute {
  position: absolute; bottom: 14px; right: 14px;
  z-index: 4;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  display: grid; place-items: center;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
}
.video-card .vc-cc {
  position: absolute; left: 14px; right: 64px; bottom: 56px;
  z-index: 3;
  font-size: 13px; font-weight: 700; color: #fff;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  padding: 6px 10px;
  border-radius: 8px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.9);
  max-width: max-content;
}

/* =================== FANDOM ROOMS =================== */
.fandom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.fandom-room {
  position: relative;
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
  border: 1px solid var(--line);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.25s;
}
.fandom-room::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(400px 300px at 100% 0%, rgba(255,45,111,0.18), transparent);
  pointer-events: none;
}
.fandom-room:hover { transform: translateY(-4px); border-color: rgba(255,45,111,0.5); }
.fandom-room h4 {
  font-size: 18px; font-weight: 800;
  margin-bottom: 6px;
  display: flex; align-items: center; gap: 8px;
  position: relative;
}
.fandom-room p {
  font-size: 13px; color: var(--text-2);
  margin-bottom: 14px;
  position: relative;
}
.fandom-room-avatars {
  display: flex; align-items: center;
  margin-bottom: 12px;
  position: relative;
}
.fandom-room-avatars .av-mini {
  width: 26px; height: 26px;
  border-radius: 50%;
  margin-left: -7px;
  border: 2px solid var(--bg-2);
  font-size: 10px;
}
.fandom-room-avatars .av-mini:first-child { margin-left: 0; }
.fandom-room-count {
  font-size: 12px; color: var(--text-3);
  margin-left: 8px; font-weight: 700;
}
.fandom-room-live {
  font-size: 12px; font-weight: 700; color: #6ee7a8;
  display: flex; align-items: center; gap: 6px;
  position: relative;
}

/* =================== COMMUNITY REACTIONS — Reddit/TikTok style =================== */
.reactions-masonry {
  columns: 3;
  column-gap: 16px;
}
.reactions-masonry > * { break-inside: avoid; margin-bottom: 16px; display: block; }
.reaction-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  transition: all 0.2s;
}
.reaction-card:hover { background: var(--surface-2); transform: translateY(-2px); }
.reaction-head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 10px;
}
.reaction-head .name { font-size: 13px; font-weight: 700; }
.reaction-head .when { font-size: 11px; color: var(--text-3); }
.reaction-text {
  font-size: 14px; color: var(--text);
  line-height: 1.5;
  margin-bottom: 10px;
}
.reaction-text em { color: var(--primary); font-style: normal; }
.reaction-meta {
  display: flex; gap: 14px;
  font-size: 12px; color: var(--text-3);
  font-weight: 600;
}
.reaction-card.meme {
  background: linear-gradient(135deg, rgba(255,45,111,0.12), rgba(139,92,246,0.12));
  border-color: rgba(255,45,111,0.25);
}
.reaction-card.spicy {
  background: linear-gradient(135deg, rgba(255,184,0,0.10), rgba(255,94,0,0.10));
  border-color: rgba(255,184,0,0.3);
}
.reaction-shot {
  margin: -4px -4px 12px;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
}

/* =================== ENGAGEMENT BADGES on show cards =================== */
.eng-row {
  margin-top: 6px;
  display: flex; gap: 10px;
  font-size: 11px; color: var(--text-3); font-weight: 700;
}
.eng-row .eng-hot {
  color: #ff5e95;
}

/* =================== PRICING PAGE =================== */
.pricing-page-head {
  margin-top: 32px;
  margin-bottom: 36px;
}
.pricing-eyebrow {
  color: var(--primary);
  font-size: 12px; font-weight: 800; letter-spacing: 2px;
  margin-bottom: 12px;
}
.pricing-page-head h1 {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.02;
  margin-bottom: 12px;
}
.pricing-page-head h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #fff 0%, #ff5e95 35%, #ff7a18 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.pricing-page-head p { color: var(--text-3); max-width: 540px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
.price-card {
  position: relative;
  padding: 32px 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(31,19,51,0.4), rgba(20,10,40,0.6));
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
}
.price-card.popular {
  background: linear-gradient(180deg, rgba(45,15,60,0.7), rgba(20,10,40,0.85));
  border: 1px solid rgba(255,45,111,0.5);
  box-shadow:
    0 20px 60px rgba(255, 45, 111, 0.18),
    0 0 0 1px rgba(255, 45, 111, 0.1);
}
.price-card.best {
  background: linear-gradient(180deg, rgba(45,15,60,0.5), rgba(20,10,40,0.7));
  border: 1px solid rgba(139,92,246,0.4);
}
.price-flag {
  position: absolute; top: 22px; right: 22px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.5px;
  text-transform: uppercase;
}
.flag-popular { background: linear-gradient(135deg, #ff2d6f, #c026d3); color: white; }
.flag-best { background: linear-gradient(135deg, #ffb800, #ff7a18); color: #1a0f2e; }
.price-name {
  font-size: 16px; font-weight: 700;
  color: var(--text-2);
  margin-bottom: 14px;
}
.price-big {
  font-size: 88px; font-weight: 900;
  line-height: 1;
  letter-spacing: -4px;
  margin-bottom: 8px;
  display: flex; align-items: flex-start; gap: 4px;
}
.price-big small { font-size: 28px; font-weight: 700; margin-top: 10px; }
.price-regular {
  color: var(--text-3);
  font-size: 13px;
  text-decoration: line-through;
  margin-bottom: 10px;
}
.price-save {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,45,111,0.18);
  color: #ff5e95;
  font-size: 12px; font-weight: 800;
  margin-bottom: 14px;
}
.price-blurb {
  font-size: 14px; color: var(--text-2);
  line-height: 1.5;
  margin-bottom: 22px;
  min-height: 42px;
}
.price-features {
  list-style: none;
  margin-bottom: 26px;
  display: flex; flex-direction: column; gap: 10px;
}
.price-features li {
  font-size: 14px;
  display: flex; align-items: center; gap: 8px;
  color: var(--text);
}
.price-features li.no { color: var(--text-3); }
.price-features li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 800;
  flex-shrink: 0;
}
.price-features li.no::before { content: '✕'; color: var(--text-3); }
.price-cta {
  display: block;
  text-align: center;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 800; font-size: 15px;
  margin-top: auto;
  transition: all 0.18s;
}
.price-cta.outlined {
  background: transparent;
  border: 1px solid var(--line-2);
  color: var(--text);
}
.price-cta.outlined:hover { background: var(--surface-2); }
.price-cta.primary {
  background: linear-gradient(135deg, #ff7a18, #ff2d6f, #c026d3);
  color: white;
  box-shadow: 0 8px 24px rgba(255, 45, 111, 0.35);
}
.price-cta.primary:hover { transform: translateY(-2px); }
.price-cta.gold {
  background: linear-gradient(135deg, #ff7a18, #ff2d6f);
  color: white;
  box-shadow: 0 8px 24px rgba(255, 122, 24, 0.35);
}

.bundle {
  padding: 28px 32px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(45,15,60,0.6), rgba(20,10,40,0.7));
  border: 1px solid rgba(255,45,111,0.25);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 28px;
}
.bundle h3 {
  font-size: 22px; font-weight: 800;
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 8px;
}
.bundle p {
  color: var(--text-2);
  font-size: 14px;
  margin-bottom: 14px;
  max-width: 640px;
}
.bundle-tiers { display: flex; gap: 22px; flex-wrap: wrap; }
.bundle-tier {
  font-size: 13px; font-weight: 700;
}
.bundle-tier .friends { color: #ff5e95; }
.bundle-price-block { text-align: right; }
.bundle-price {
  font-size: 18px; font-weight: 700;
  background: linear-gradient(135deg, #ff7a18, #ff2d6f);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  margin-bottom: 4px;
}
.bundle-price big {
  font-size: 44px; font-weight: 900;
  letter-spacing: -2px;
  display: inline-block;
}
.bundle-price-sub { color: var(--text-3); font-size: 12px; }
.bundle-cta {
  display: inline-block;
  margin-top: 14px;
  padding: 12px 22px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff7a18, #ff2d6f, #c026d3);
  color: white;
  font-weight: 800; font-size: 14px;
  box-shadow: 0 8px 24px rgba(255, 45, 111, 0.35);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 40px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 22px;
}
.faq-item h4 {
  font-size: 15px; font-weight: 800;
  margin-bottom: 6px;
}
.faq-item p { font-size: 13px; color: var(--text-2); line-height: 1.5; }

/* =================== LIVE INDICATORS =================== */
.live-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: livePulse 1.6s infinite;
  vertical-align: middle;
  margin-right: 4px;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
.live-pill {
  background: rgba(34, 197, 94, 0.12) !important;
  border-color: rgba(34, 197, 94, 0.4) !important;
  color: #6ee7a8 !important;
  font-weight: 700 !important;
}
.trending-live {
  margin-top: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #6ee7a8;
}

/* =================== LIVE STRIP =================== */
.live-strip {
  display: flex;
  gap: 16px;
  align-items: stretch;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(139, 92, 246, 0.08));
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: var(--radius-lg);
  padding: 16px;
}
.live-strip-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 800; letter-spacing: 1.5px;
  color: #6ee7a8;
  white-space: nowrap;
  padding: 10px 14px;
  border-right: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.live-strip-items {
  display: flex; gap: 10px;
  overflow-x: auto;
  flex: 1;
  scrollbar-width: none;
}
.live-strip-items::-webkit-scrollbar { display: none; }
.live-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  flex-shrink: 0;
  min-width: 240px;
  transition: all 0.18s;
}
.live-item:hover {
  background: var(--surface-2);
  border-color: var(--line-2);
  transform: translateY(-2px);
}
.live-item-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-3);
  display: grid; place-items: center;
  font-size: 16px;
  flex-shrink: 0;
}
.live-item-title {
  font-size: 13px; font-weight: 700;
  line-height: 1.3;
  margin-bottom: 2px;
}
.live-item-sub {
  font-size: 11px;
  color: var(--text-3);
}

/* =================== TOAST =================== */
.toast {
  position: fixed;
  bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--surface-2);
  border: 1px solid var(--line-2);
  color: var(--text);
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600; font-size: 14px;
  box-shadow: var(--shadow-strong);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 100;
  max-width: 90vw;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* =================== EARLY-ACCESS MODAL =================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 5, 16, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.22s ease;
}
.modal-backdrop.show { display: flex; opacity: 1; }
.modal {
  width: 100%;
  max-width: 460px;
  background: linear-gradient(180deg, #1f1333 0%, #14062a 100%);
  border: 1px solid rgba(255, 45, 111, 0.35);
  border-radius: 22px;
  padding: 36px 32px 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 60px rgba(255, 45, 111, 0.18);
  position: relative;
  transform: translateY(20px) scale(0.96);
  transition: transform 0.25s ease;
}
.modal-backdrop.show .modal { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text-2);
  font-size: 18px;
  display: grid; place-items: center;
  cursor: pointer;
  transition: all 0.15s;
}
.modal-close:hover { background: var(--surface-2); color: var(--text); }
.modal-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255, 184, 0, 0.14);
  color: var(--accent);
  border: 1px solid rgba(255, 184, 0, 0.4);
  padding: 5px 12px; border-radius: 999px;
  font-weight: 700; font-size: 11px; letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.modal h2 {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 8px;
}
.modal h2 em {
  font-style: normal;
  background: var(--grad-hero);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.modal p {
  color: var(--text-2);
  font-size: 14px;
  margin-bottom: 22px;
  line-height: 1.5;
}
.modal-form { display: flex; flex-direction: column; gap: 12px; }
.modal-input {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s, background 0.15s;
}
.modal-input::placeholder { color: var(--text-3); }
.modal-input:focus {
  border-color: var(--primary);
  background: var(--bg-3);
}
.modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}
.modal-actions .btn { flex: 1; padding: 13px 18px; font-size: 14px; }
.modal-success {
  display: none;
  text-align: center;
  padding: 8px 0 4px;
}
.modal-success.show { display: block; }
.modal-success-icon {
  width: 56px; height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #06b6d4);
  display: grid; place-items: center;
  font-size: 28px;
  box-shadow: 0 0 30px rgba(34, 197, 94, 0.4);
}
.modal-success h3 { font-size: 22px; font-weight: 900; margin-bottom: 6px; }
.modal-success p { font-size: 14px; color: var(--text-2); margin-bottom: 0; }
.modal-foot {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex; gap: 16px; justify-content: center;
  font-size: 11px; color: var(--text-3);
}

/* =================== WATCH TOGETHER BUNDLE (tiered) =================== */
.bundle-v2 {
  position: relative;
  padding: 36px 36px 32px;
  border-radius: 24px;
  background:
    radial-gradient(600px 300px at 100% 0%, rgba(255,45,111,0.18), transparent),
    linear-gradient(180deg, rgba(45,15,60,0.7) 0%, rgba(20,10,40,0.85) 100%);
  border: 1px solid rgba(255,45,111,0.35);
  overflow: hidden;
}
.bundle-v2-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.bundle-v2-head h2 {
  font-size: 30px; font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 6px;
  display: flex; align-items: center; gap: 10px;
}
.bundle-v2-head h2 em {
  font-style: normal;
  background: linear-gradient(135deg, #ff7a18, #ff2d6f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.bundle-v2-head p { color: var(--text-2); max-width: 540px; font-size: 14px; }

.bundle-tier-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.bundle-tier-card {
  position: relative;
  padding: 22px 18px;
  border-radius: 16px;
  background: rgba(20, 10, 40, 0.7);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: all 0.2s;
  cursor: pointer;
}
.bundle-tier-card:hover {
  border-color: rgba(255, 45, 111, 0.45);
  transform: translateY(-3px);
}
.bundle-tier-card.tier-popular {
  border-color: rgba(255, 184, 0, 0.5);
  background: linear-gradient(180deg, rgba(60,30,15,0.8), rgba(20,10,40,0.85));
  box-shadow: 0 12px 36px rgba(255, 184, 0, 0.12);
}
.bundle-tier-flag {
  position: absolute; top: 12px; right: 12px;
  font-size: 10px; font-weight: 800;
  background: linear-gradient(135deg, #ffb800, #ff7a18);
  color: #1a0f2e;
  padding: 4px 8px;
  border-radius: 999px;
  letter-spacing: 0.5px;
}
.bundle-tier-icon {
  font-size: 24px;
  margin-bottom: 8px;
}
.bundle-tier-name {
  font-size: 14px; font-weight: 800;
  margin-bottom: 12px;
  color: var(--text);
}
.bundle-tier-price {
  font-size: 32px; font-weight: 900;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 4px;
  display: flex; align-items: flex-start; gap: 2px;
}
.bundle-tier-price small { font-size: 16px; margin-top: 4px; }
.bundle-tier-period {
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 12px;
}
.bundle-tier-save {
  font-size: 11px; font-weight: 800;
  color: #6ee7a8;
}
.bundle-tier-save.solo { color: var(--text-3); }

/* =================== NEW FOOTER LAYOUT =================== */
.footer-grid-v2 {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 32px;
}
.social-row {
  display: flex; gap: 10px;
  margin-top: 18px;
}
.social-row a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-size: 16px;
  transition: all 0.18s;
}
.social-row a:hover {
  background: var(--surface-2);
  transform: translateY(-2px);
  border-color: rgba(255,45,111,0.35);
}

/* =================== RESPONSIVE =================== */
@media (max-width: 980px) {
  .hero-v2 { grid-template-columns: 1fr; min-height: auto; }
  .hero-v2-mockup { padding: 0 20px 40px; }
  .hero-v2-content { padding: 40px 28px 24px; }
  .notif-stack { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-grid .price-card { padding: 24px 22px; }
  .price-big { font-size: 68px; }
  .bundle, .bundle-v2 { padding: 24px 22px; }
  .bundle { grid-template-columns: 1fr; }
  .bundle-price-block { text-align: left; }
  .bundle-tier-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .reactions-masonry { columns: 2; }
  .footer-grid-v2 { grid-template-columns: 1fr 1fr; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .video-showcase { grid-template-columns: repeat(2, 1fr); }
  .modal { padding: 28px 22px 22px; max-width: calc(100vw - 32px); }
  .modal h2 { font-size: 22px; }
  .hero-poster { padding: 0 40px 40px; }
  .hero-content { padding: 40px 32px 24px; }
  .series-hero { grid-template-columns: 1fr; gap: 24px; }
  .series-poster-wrap { padding: 0 32px; max-width: 280px; margin: 0 auto; }
  .series-info { padding: 0 32px; }
  .watch-layout { grid-template-columns: 1fr; }
  .player-stage { min-height: auto; }
  .app-cta { grid-template-columns: 1fr; padding: 40px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-inner { gap: 10px; height: 60px; }
  .logo-img { height: 36px; max-width: 150px; }
  .nav-links { display: none; }
  .search-box { display: none; }
  .container { padding: 0 14px; }
  .hero-content { padding: 28px 18px 18px; }
  .hero-v2-content { padding: 28px 18px 16px; }
  .hero-v2-title { font-size: clamp(30px, 9vw, 44px); letter-spacing: -1.2px; }
  .hero-v2-sub { font-size: 15px; }
  .hero-v2-cta { flex-direction: column; }
  .hero-v2-cta .btn { width: 100%; }
  .social-proof-row { gap: 18px; }
  .social-proof-stat .num { font-size: 20px; }
  .social-proof-stat .lbl { font-size: 10px; letter-spacing: 0.5px; }
  .footer-grid, .footer-grid-v2 { grid-template-columns: 1fr; gap: 24px; }
  .player-frame { width: 100%; max-width: 360px; }
  .reactions-masonry { columns: 1; }
  .phone-mockup { width: min(280px, calc(100vw - 80px)); }
  .price-big { font-size: 60px; }
  .video-showcase { grid-template-columns: 1fr; gap: 14px; }
  .bundle-tier-grid { grid-template-columns: 1fr; }
  .bundle-v2-head h2 { font-size: 24px; }
  .pricing-page-head h1 { font-size: clamp(30px, 9vw, 44px); }
  .ticker-bar { padding: 10px 14px; }
  .ticker-bar::before { font-size: 10px; padding-right: 10px; margin-right: 10px; }
  .section-title { font-size: 22px; }
  .app-cta { padding: 32px 22px; }
  .app-cta h2 { font-size: 26px; }
  .modal { padding: 22px 18px 18px; border-radius: 18px; }
  .modal h2 { font-size: 20px; }
  .modal-actions { flex-direction: column; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { padding: 22px; }
  .pillar h3 { font-size: 18px; }
  .fandom-grid { grid-template-columns: 1fr; }
}

/* Add a mobile menu button visible only on phones */
.nav-burger { display: none; }
@media (max-width: 640px) {
  .nav-burger {
    display: inline-flex;
    width: 38px; height: 38px;
    border-radius: 10px;
    background: var(--surface);
    border: 1px solid var(--line);
    align-items: center; justify-content: center;
    font-size: 18px;
    cursor: pointer;
    margin-left: auto;
    color: var(--text);
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px; left: 0; right: 0;
    background: rgba(10, 5, 16, 0.97);
    backdrop-filter: blur(14px);
    padding: 14px;
    gap: 4px;
    border-bottom: 1px solid var(--line);
    z-index: 60;
  }
  .nav-links.open a { padding: 12px 14px; font-size: 15px; }
}
