
:root {
  color-scheme: dark;
  --bg: #070b14;
  --bg2: #0c1220;
  --panel: rgba(15, 23, 42, 0.72);
  --panel-2: rgba(15, 23, 42, 0.9);
  --line: rgba(148, 163, 184, 0.18);
  --text: #e5e7eb;
  --muted: #94a3b8;
  --accent: #f59e0b;
  --accent2: #7c3aed;
}
html, body {
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.10), transparent 24%),
    linear-gradient(180deg, #060912 0%, #09101d 38%, #050814 100%);
  color: var(--text);
}
body {
  min-height: 100vh;
}
a { text-decoration: none; }
.site-shell {
  position: relative;
}
.site-shell::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent 25%);
}
.glass {
  background: var(--panel);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.panel {
  background: var(--panel-2);
  border: 1px solid var(--line);
}
.text-muted { color: var(--muted); }
.shadow-soft {
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
}
.poster {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,0.18), transparent 24%),
    radial-gradient(circle at 82% 10%, rgba(255,255,255,0.12), transparent 25%),
    linear-gradient(135deg, var(--c1), var(--c2) 52%, var(--c3));
}
.poster::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3,7,18,0.08), rgba(3,7,18,0.72)),
    linear-gradient(90deg, rgba(255,255,255,0.06), transparent 30%, transparent 70%, rgba(255,255,255,0.06));
}
.poster-content {
  position: relative;
  z-index: 1;
}
.poster-card {
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.hero-frame {
  min-height: 520px;
  border-radius: 2rem;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}
.hero-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.18), transparent 18%),
    linear-gradient(110deg, rgba(3,7,18,0.28) 10%, rgba(3,7,18,0.82) 52%, rgba(3,7,18,0.94) 100%);
  z-index: 1;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity .6s ease, transform .8s ease;
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.hero-slide .hero-bg {
  position: absolute;
  inset: 0;
}
.hero-slide .hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255,255,255,0.14), transparent 18%),
    radial-gradient(circle at 78% 18%, rgba(255,255,255,0.10), transparent 16%),
    linear-gradient(135deg, rgba(0,0,0,0.04), rgba(0,0,0,0.85));
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.line-clamp-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.nav-shell {
  background: rgba(7, 11, 20, 0.78);
  border-bottom: 1px solid rgba(148,163,184,0.16);
  backdrop-filter: blur(16px);
}
.mobile-menu[hidden] { display: none; }
.search-bar {
  background: rgba(15,23,42,0.8);
  border: 1px solid rgba(148,163,184,0.2);
}
.search-bar input,
.search-bar select {
  background: transparent;
  color: #fff;
}
.search-bar input::placeholder { color: #94a3b8; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  border-radius: 999px;
  padding: .35rem .75rem;
  border: 1px solid rgba(148,163,184,0.18);
  background: rgba(15,23,42,0.66);
  color: #e2e8f0;
}
.page-dot {
  width: .5rem;
  height: .5rem;
  border-radius: 999px;
  background: rgba(148,163,184,0.35);
  display: inline-block;
}
.page-dot.is-active { background: #f59e0b; }
.player-shell {
  background: linear-gradient(180deg, rgba(15,23,42,0.95), rgba(2,6,23,0.98));
  border: 1px solid rgba(148,163,184,0.18);
  border-radius: 1.5rem;
  overflow: hidden;
}
.player-wrap {
  position: relative;
  background: #030712;
}
.player-wrap video {
  width: 100%;
  height: auto;
  display: block;
  background: #000;
}
.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.play-overlay button {
  pointer-events: auto;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(15,23,42,0.68);
  backdrop-filter: blur(10px);
  color: #fff;
  box-shadow: 0 18px 48px rgba(0,0,0,0.4);
}
@media (max-width: 768px) {
  .hero-frame { min-height: 620px; }
}
