/* ═══════════════════════════════════════════════════
   NEXA FM STUDIO — Main Stylesheet (Dark Theme + Original Layout)
   ═══════════════════════════════════════════════════ */

:root {
  /* Core Backgrounds */
  --black: #020210;
  --black2: #04061a;
  --black3: #0a0c28;
  --card-bg: #0f1135;
  --card-bg-hover: #151845;

  /* Accent Colors */
  --pink: #ff2d78;
  --pink-light: #ff6b9d;
  --pink-soft: #ffd6ee;
  --pink-dim: #b91c5a;
  --rose: #ff2d78;
  --rose-glow: rgba(255, 45, 120, 0.2);
  --rose-glow2: rgba(255, 45, 120, 0.08);

  /* New Accent Colors */
  --accent-cyan: #00e5ff;
  --accent-purple: #b44dff;
  --accent-gold: #ffb800;
  --accent-green: #00e676;

  /* Text */
  --text-primary: #f0edff;
  --text-secondary: #b8b4d0;
  --text-muted: #6e6a85;

  /* Borders */
  --border: rgba(255, 255, 255, 0.06);
  --border-strong: rgba(180, 77, 255, 0.35);
  --border-glow: rgba(180, 77, 255, 0.5);

  /* Sizing */
  --header-h: 72px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 60px rgba(180, 77, 255, 0.25);
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Outfit', 'Inter', sans-serif;
  background: var(--black);
  color: var(--text-primary);
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* Space Canvas, Scanlines, Vignette */
#space-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px);
}
.vignette-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(2,2,16,0.7) 100%);
}

/* Content Wrapper */
#main-content {
  position: relative;
  z-index: 10;
}

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black2); }
::-webkit-scrollbar-thumb { background: var(--accent-purple); border-radius: 10px; }

/* Navbar (Original but enhanced) */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  z-index: 100;
  transition: background var(--transition), backdrop-filter var(--transition);
}
.navbar.scrolled {
  background: rgba(4,6,26,0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
}
.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--accent-purple), var(--pink));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  box-shadow: 0 0 20px rgba(180,77,255,0.4);
}
.nav-logo-text {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  font-weight: 700;
  background: linear-gradient(135deg, #fff 0%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-logo-sub {
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  color: var(--accent-purple);
  -webkit-text-fill-color: var(--accent-purple);
  display: block;
  margin-top: -4px;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-link:hover { color: var(--accent-cyan); }
.btn-nav {
  padding: 9px 22px;
  background: linear-gradient(135deg, var(--accent-purple), var(--pink));
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(180,77,255,0.4);
}
.nav-profile {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-purple), var(--pink));
  border: 2px solid var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  cursor: pointer;
  position: relative;
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--black2);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  width: 180px;
  overflow: hidden;
  display: none;
  box-shadow: 0 16px 40px rgba(0,0,0,0.6);
}
.nav-profile:hover .nav-dropdown { display: block; }
.nav-dropdown a, .nav-dropdown button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  width: 100%;
  color: var(--text-secondary);
  font-size: 0.88rem;
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.nav-dropdown a:hover, .nav-dropdown button:hover {
  background: var(--rose-glow);
  color: var(--accent-cyan);
}
.nav-hamburger { display: none; }
.mobile-menu { display: none; }

/* Page Toggle (original) */
#page-landing, #page-browse { display: none; }
#page-landing.active, #page-browse.active { display: block; }

/* ─── HERO (original enhanced) ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: calc(var(--header-h) + 40px) 5% 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg-film {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 60%, rgba(180,77,255,0.1) 0%, transparent 70%),
              linear-gradient(180deg, transparent 0%, rgba(2,2,16,0.8) 100%);
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-purple) 0%, transparent 70%);
  filter: blur(60px);
  opacity: 0.08;
  pointer-events: none;
  animation: orbFloat 12s ease-in-out infinite;
}
.orb1 { width: 500px; height: 500px; top: -100px; left: -150px; }
.orb2 { width: 400px; height: 400px; top: 50%; right: -100px; animation-delay: -4s; }
.orb3 { width: 300px; height: 300px; bottom: -50px; left: 30%; animation-delay: -8s; }
@keyframes orbFloat {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: var(--rose-glow);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--accent-cyan);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-cyan);
  animation: pulse 1.5s ease infinite;
}
@keyframes pulse { 0%,100%{ opacity:1; transform:scale(1); } 50%{ opacity:0.5; transform:scale(1.4); } }
.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 12px;
}
.hero-title .line1 {
  background: linear-gradient(135deg, #fff 0%, #e8d4f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-title .line2 {
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 50%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  filter: drop-shadow(0 0 40px rgba(180,77,255,0.5));
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  font-weight: 300;
  max-width: 580px;
  line-height: 1.7;
  margin: 20px auto 42px;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  padding: 15px 38px;
  background: linear-gradient(135deg, var(--accent-purple), var(--pink));
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 12px 36px rgba(180,77,255,0.5); }
.btn-secondary {
  padding: 15px 38px;
  background: transparent;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}
.btn-secondary:hover { background: var(--rose-glow); border-color: var(--accent-cyan); transform: translateY(-2px); }

/* ─── VIDEO THEATRE SECTION (new) ─── */
.video-theatre-section {
  padding: 80px 5%;
  position: relative;
  z-index: 10;
}
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent-purple);
  font-weight: 600;
  margin-bottom: 8px;
}
.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  background: linear-gradient(135deg, #fff, var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.video-theatre-row {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
}
.video-theatre-row::-webkit-scrollbar { height: 4px; }
.video-theatre-row::-webkit-scrollbar-thumb { background: var(--accent-purple); }

.theatre-card {
  flex-shrink: 0;
  width: clamp(260px, 30vw, 380px);
  scroll-snap-align: start;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  background: var(--card-bg);
}
.theatre-card:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: var(--accent-purple);
  box-shadow: 0 0 50px rgba(180,77,255,0.3), 0 20px 60px rgba(0,0,0,0.6);
}
.theatre-card::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  padding: 3px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-purple), var(--accent-cyan), var(--pink));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s;
  z-index: 0;
}
.theatre-card:hover::before { opacity: 1; }
.theatre-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, transparent 25%, transparent 75%, rgba(0,0,0,0.7) 100%);
  opacity: 0;
  transition: opacity 0.35s;
  z-index: 2;
  pointer-events: none;
}
.theatre-card:hover::after { opacity: 1; }
.theatre-video-wrapper {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
}
.theatre-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.theatre-card:hover .theatre-video-wrapper video { transform: scale(1.05); }
.theatre-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.35s;
}
.theatre-card:hover .theatre-play-overlay { opacity: 1; }
.play-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.theatre-card:hover .play-circle {
  background: var(--pink);
  border-color: var(--pink);
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(255,45,120,0.5);
}
.play-circle svg { width: 24px; height: 24px; fill: #fff; margin-left: 3px; }
.theatre-info { padding: 16px; position: relative; z-index: 5; }
.theatre-info h3 { font-size: 1rem; font-weight: 700; color: var(--text-primary); }
.theatre-info .meta { font-size: 0.8rem; color: var(--text-muted); }
.theatre-seats { display: flex; gap: 4px; padding: 0 16px 16px; z-index: 5; position: relative; }
.seat-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--text-muted); transition: all 0.2s; }
.theatre-card:hover .seat-dot { background: var(--accent-cyan); animation: seatGlow 0.6s ease-in-out infinite alternate; }
.theatre-card:hover .seat-dot:nth-child(odd) { animation-delay: 0.1s; }
.theatre-card:hover .seat-dot:nth-child(even) { animation-delay: 0.2s; }
@keyframes seatGlow {
  0% { opacity: 0.4; box-shadow: 0 0 2px var(--accent-cyan); }
  100% { opacity: 1; box-shadow: 0 0 10px var(--accent-cyan), 0 0 20px rgba(0,229,255,0.5); }
}

/* ─── Features, Cinematic, How It Works (original enhanced) ─── */
.feature-strip { padding: 80px 5%; background: var(--black2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; max-width: 1200px; margin: 0 auto; }
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-purple), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: 0 20px 50px rgba(180,77,255,0.1);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon { width: 54px; height: 54px; border-radius: 14px; background: var(--rose-glow); border: 1px solid var(--border-strong); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; }
.feature-title { font-family: 'Cinzel', serif; font-size: 1.05rem; font-weight: 600; margin-bottom: 10px; color: var(--text-primary); }
.feature-desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; }

.cinematic { padding: 100px 5%; display: flex; align-items: center; gap: 64px; max-width: 1300px; margin: 0 auto; flex-wrap: wrap; }
.cinematic-visual { flex: 1; min-width: 280px; position: relative; }
.cine-frame { border-radius: 20px; background: var(--card-bg); border: 1px solid var(--border-strong); overflow: hidden; aspect-ratio: 16/10; position: relative; box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(180,77,255,0.2); }
.cine-frame-inner { width: 100%; height: 100%; background: linear-gradient(135deg, rgba(180,77,255,0.08) 0%, transparent 50%, rgba(255,45,120,0.06) 100%), repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(180,77,255,0.02) 40px, rgba(180,77,255,0.02) 41px); display: flex; align-items: center; justify-content: center; }
.play-circle-big { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--accent-purple), var(--pink)); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 40px rgba(180,77,255,0.6); cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; }
.play-circle-big:hover { transform: scale(1.1); box-shadow: 0 0 60px rgba(180,77,255,0.8); }
.cine-badge { position: absolute; bottom: -20px; right: 30px; background: var(--black2); border: 1px solid var(--border-strong); border-radius: 12px; padding: 14px 20px; display: flex; align-items: center; gap: 12px; box-shadow: 0 16px 40px rgba(0,0,0,0.5); }
.cine-badge-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent-purple); animation: pulse 1.5s ease infinite; }

.how-it-works { padding: 100px 5%; background: var(--black2); border-top: 1px solid var(--border); }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; max-width: 1100px; margin: 0 auto; }
.step { text-align: center; position: relative; }
.step::after { content: ''; position: absolute; top: 30px; left: calc(50% + 40px); right: calc(-50% + 40px); height: 1px; background: linear-gradient(90deg, var(--border-strong), transparent); }
.step:last-child::after { display: none; }
.step-num { width: 60px; height: 60px; border-radius: 50%; border: 2px solid var(--border-strong); background: var(--rose-glow2); display: flex; align-items: center; justify-content: center; font-family: 'Cinzel', serif; font-size: 1.3rem; font-weight: 700; color: var(--accent-cyan); margin: 0 auto 20px; transition: border-color 0.3s, box-shadow 0.3s; }
.step:hover .step-num { border-color: var(--accent-purple); box-shadow: 0 0 30px rgba(180,77,255,0.3); }

.cta-band { margin: 80px 5%; border-radius: 24px; background: linear-gradient(135deg, rgba(180,77,255,0.12) 0%, rgba(255,45,120,0.08) 100%); border: 1px solid var(--border-strong); padding: 72px 48px; text-align: center; position: relative; overflow: hidden; }
.cta-band h2 { font-family: 'Cinzel', serif; font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; margin-bottom: 16px; background: linear-gradient(135deg, #fff, var(--accent-cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* Footer */
footer { background: var(--black2); border-top: 1px solid var(--border); padding: 60px 5% 32px; }

/* Browse Page (original) */
.browse-hero { height: 70vh; min-height: 480px; position: relative; overflow: hidden; display: flex; align-items: flex-end; padding: 0 5% 60px; }
.browse-hero-bg { position: absolute; inset: 0; background: linear-gradient(to right, rgba(2,2,16,0.9) 40%, transparent 100%), linear-gradient(to top, rgba(2,2,16,1) 0%, rgba(2,2,16,0.3) 50%, transparent 100%), linear-gradient(135deg, #0d0520 0%, #1a0530 30%, #0d0518 60%, #06020e 100%); }
.browse-hero-pattern { position: absolute; inset: 0; background: repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(180,77,255,0.02) 40px, rgba(180,77,255,0.02) 80px); }
.browse-hero-content { position: relative; z-index: 2; max-width: 600px; }
.browse-hero-tag { display: inline-block; padding: 4px 14px; background: linear-gradient(135deg, var(--accent-purple), var(--pink)); border-radius: 6px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px; }
.browse-hero-title { font-family: 'Cinzel', serif; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; line-height: 1.1; margin-bottom: 16px; }
.browse-hero-desc { color: var(--text-secondary); font-size: 1rem; line-height: 1.65; margin-bottom: 28px; max-width: 480px; }
.btn-watch { display: flex; align-items: center; gap: 8px; padding: 13px 28px; background: #fff; color: #0a0a0a; font-weight: 700; font-size: 0.95rem; border: none; border-radius: 8px; cursor: pointer; }

.genre-filter { display: flex; gap: 10px; overflow-x: auto; padding: 0 5% 28px; }
.genre-btn { flex-shrink: 0; padding: 8px 20px; border: 1px solid var(--border); border-radius: 100px; background: transparent; color: var(--text-secondary); font-size: 0.88rem; font-weight: 500; cursor: pointer; transition: all 0.2s; }
.genre-btn.active, .genre-btn:hover { background: linear-gradient(135deg, var(--accent-purple), var(--pink)); border-color: transparent; color: #fff; }

.content-section { padding: 0 5% 60px; }
.row-title { font-family: 'Cinzel', serif; font-size: 1.15rem; font-weight: 700; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.row-title span { font-size: 0.82rem; font-weight: 500; color: var(--accent-cyan); cursor: pointer; }

.movie-row { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 16px; scroll-snap-type: x mandatory; }
.movie-card { flex-shrink: 0; width: 200px; scroll-snap-align: start; cursor: pointer; position: relative; border-radius: 12px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; border: 1px solid var(--border); background: var(--card-bg); }
.movie-card:hover { transform: scale(1.06) translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 0 1px rgba(180,77,255,0.3); z-index: 2; }
.movie-thumb { width: 100%; aspect-ratio: 2/3; position: relative; overflow: hidden; }
.movie-thumb-inner { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; transition: transform 0.4s; }
.movie-card:hover .movie-thumb-inner { transform: scale(1.08); }
.movie-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(2,2,16,0.95) 0%, transparent 60%); opacity: 0; transition: opacity 0.3s; display: flex; align-items: flex-end; padding: 12px; }
.movie-card:hover .movie-overlay { opacity: 1; }
.movie-play { width: 38px; height: 38px; border-radius: 50%; background: var(--pink); display: flex; align-items: center; justify-content: center; }
.movie-info { padding: 12px 10px; background: var(--card-bg); }
.movie-title { font-size: 0.85rem; font-weight: 700; margin-bottom: 4px; line-height: 1.3; }
.movie-meta { font-size: 0.75rem; color: var(--text-muted); }
.movie-badge { position: absolute; top: 10px; left: 10px; padding: 3px 8px; border-radius: 4px; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.badge-new { background: var(--pink); color: #fff; }
.badge-exclusive { background: rgba(255,45,120,0.2); border: 1px solid var(--pink); color: var(--accent-cyan); }

.top10-card { flex-shrink: 0; width: 240px; display: flex; align-items: flex-end; cursor: pointer; }
.top10-num { font-family: 'Cinzel', serif; font-size: 5rem; font-weight: 900; line-height: 1; color: transparent; -webkit-text-stroke: 2px rgba(180,77,255,0.5); flex-shrink: 0; margin-right: -12px; z-index: 1; }

/* Auth Modal */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.85); backdrop-filter: blur(10px); z-index: 200; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal { background: var(--black2); border: 1px solid var(--border-strong); border-radius: 20px; width: 100%; max-width: 440px; padding: 44px 40px; position: relative; transform: translateY(20px); transition: transform 0.3s; box-shadow: 0 40px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(180,77,255,0.1); }
.modal-overlay.open .modal { transform: translateY(0); }
.modal-close { position: absolute; top: 18px; right: 18px; width: 32px; height: 32px; border-radius: 8px; background: rgba(180,77,255,0.1); border: 1px solid var(--border); color: var(--text-secondary); font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.form-group { margin-bottom: 20px; }
.form-input { width: 100%; padding: 13px 16px; background: var(--card-bg); border: 1px solid var(--border); border-radius: 10px; color: var(--text-primary); font-size: 0.95rem; outline: none; }
.form-input:focus { border-color: var(--accent-purple); box-shadow: 0 0 0 3px rgba(180,77,255,0.15); }
.form-error { font-size: 0.8rem; color: #ff5252; margin-top: 6px; display: none; }
.form-error.show { display: block; }
.btn-auth { width: 100%; padding: 14px; background: linear-gradient(135deg, var(--accent-purple), var(--pink)); color: #fff; font-size: 1rem; font-weight: 700; border: none; border-radius: 10px; cursor: pointer; }
.auth-tabs { display: flex; background: var(--card-bg); border: 1px solid var(--border); border-radius: 10px; padding: 4px; margin-bottom: 28px; }
.auth-tab { flex: 1; padding: 9px; text-align: center; font-size: 0.9rem; font-weight: 600; border-radius: 7px; cursor: pointer; color: var(--text-secondary); border: none; background: none; }
.auth-tab.active { background: linear-gradient(135deg, var(--accent-purple), var(--pink)); color: #fff; }

/* Video Modal */
.video-modal { position: fixed; inset: 0; z-index: 300; background: rgba(0,0,0,0.92); display: flex; align-items: center; justify-content: center; padding: 20px; display: none; }
.video-modal.open { display: flex; }
.video-box { background: var(--black2); border: 1px solid var(--border-strong); border-radius: 20px; width: 100%; max-width: 900px; overflow: hidden; }
.video-header { padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border); }
.video-title { font-family: 'Cinzel', serif; font-size: 1.1rem; font-weight: 700; }
.video-close { width: 34px; height: 34px; border-radius: 8px; background: rgba(180,77,255,0.1); border: 1px solid var(--border); color: var(--text-secondary); cursor: pointer; display: flex; align-items: center; justify-content: center; }
.video-body { aspect-ratio: 16/9; background: #000; display: flex; align-items: center; justify-content: center; position: relative; }
.video-body video { width: 100%; height: 100%; object-fit: contain; }