*, *::before, *::after {
      margin: 0; padding: 0; box-sizing: border-box;
      text-decoration: none; list-style: none;
    }

    :root[data-theme="dark"] {
      --bg:           #0b0c0f;
      --surface:      #13151a;
      --surface2:     #1c1f27;
      --border:       rgba(255,255,255,0.07);
      --text:         #f0f0f0;
      --text-muted:   #7a7f8e;
      --accent:       #f5c518;
      --accent-dim:   rgba(245,197,24,0.12);
      --accent-glow:  rgba(245,197,24,0.35);
      --glass:        rgba(13,14,18,0.75);
      --card-hover:   rgba(255,255,255,0.03);
      --shadow:       0 8px 40px rgba(0,0,0,0.6);
      --nav-blur:     blur(20px);
    }

    :root[data-theme="light"] {
      --bg:           #f0ece4;
      --surface:      #ffffff;
      --surface2:     #f5f1eb;
      --border:       rgba(0,0,0,0.08);
      --text:         #111114;
      --text-muted:   #6b6f7a;
      --accent:       #c8960a;
      --accent-dim:   rgba(200,150,10,0.1);
      --accent-glow:  rgba(200,150,10,0.25);
      --glass:        rgba(255,255,255,0.8);
      --card-hover:   rgba(0,0,0,0.03);
      --shadow:       0 8px 40px rgba(0,0,0,0.12);
      --nav-blur:     blur(20px);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--bg);
      color: var(--text);
      min-height: 100vh;
      transition: background 0.4s, color 0.4s;
      overflow-x: hidden;
    }

    /* ─── NAV ─── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      height: 68px;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 40px;
      background: var(--glass);
      backdrop-filter: var(--nav-blur);
      border-bottom: 1px solid var(--border);
      transition: background 0.4s, border-color 0.4s;
    }

    .logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 28px;
      letter-spacing: 2px;
      color: var(--text);
    }
    .logo span { color: var(--accent); }

    .nav-links {
      display: flex; gap: 6px; align-items: center;
    }
    .nav-links a {
      font-size: 14px;
      font-weight: 500;
      color: var(--text-muted);
      padding: 8px 16px;
      border-radius: 8px;
      transition: color 0.2s, background 0.2s;
    }
    .nav-links a:hover { color: var(--text); background: var(--surface2); }
    .nav-links a.active { color: var(--accent); }
    .nav-links a.highlight { color: var(--accent); font-weight: 600; }

    .nav-right { display: flex; align-items: center; gap: 12px; }

    /* Theme toggle */
    .theme-toggle {
      width: 48px; height: 26px;
      background: var(--surface2);
      border: 1px solid var(--border);
      border-radius: 13px;
      cursor: pointer;
      position: relative;
      transition: background 0.3s;
      flex-shrink: 0;
    }
    .theme-toggle::after {
      content: '';
      position: absolute;
      top: 3px; left: 3px;
      width: 18px; height: 18px;
      border-radius: 50%;
      background: var(--accent);
      transition: transform 0.3s, background 0.3s;
    }
    [data-theme="light"] .theme-toggle::after { transform: translateX(22px); }

    .theme-icon {
      position: absolute; top: 50%; transform: translateY(-50%);
      font-size: 10px; line-height: 1;
      pointer-events: none;
    }
    .theme-icon.moon { left: 5px; }
    .theme-icon.sun  { right: 4px; }

    .btn-signup {
      font-family: 'DM Sans', sans-serif;
      font-size: 14px; font-weight: 600;
      padding: 9px 22px;
      border-radius: 10px;
      background: var(--accent);
      color: #111;
      border: none;
      cursor: pointer;
      transition: opacity 0.2s, transform 0.2s, box-shadow 0.3s;
      box-shadow: 0 0 0 0 var(--accent-glow);
    }
    .btn-signup:hover {
      opacity: 0.9; transform: translateY(-1px);
      box-shadow: 0 4px 20px var(--accent-glow);
    }

    /* ─── HERO / SPOTLIGHT ─── */
    .hero-section {
      padding-top: 68px;
      position: relative;
    }

    .spotlight {
      position: relative;
      height: calc(100vh - 68px);
      min-height: 500px;
      overflow: hidden;
      display: flex; align-items: flex-end;
    }

    .spotlight-bg {
      position: absolute; inset: 0;
      background-size: cover;
      background-position: center;
      transition: opacity 0.6s ease, transform 0.6s ease;
      transform: scale(1.03);
    }
    .spotlight-bg.active { opacity: 1; transform: scale(1); }
    .spotlight-bg.hidden { opacity: 0; transform: scale(1.03); }

    .spotlight-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(
        to right,
        rgba(0,0,0,0.88) 0%,
        rgba(0,0,0,0.5) 50%,
        transparent 100%
      ), linear-gradient(
        to top,
        rgba(0,0,0,0.7) 0%,
        transparent 60%
      );
    }

    [data-theme="light"] .spotlight-overlay {
      background: linear-gradient(
        to right,
        rgba(240,236,228,0.9) 0%,
        rgba(240,236,228,0.55) 50%,
        transparent 100%
      ), linear-gradient(
        to top,
        rgba(240,236,228,0.8) 0%,
        transparent 60%
      );
    }

    .spotlight-content {
      position: relative; z-index: 2;
      padding: 0 60px 70px;
      max-width: 560px;
    }

    .spotlight-badge {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--accent-dim);
      border: 1px solid var(--accent-glow);
      border-radius: 6px;
      padding: 5px 12px;
      font-size: 11px; font-weight: 600;
      color: var(--accent);
      text-transform: uppercase; letter-spacing: 1.5px;
      margin-bottom: 18px;
    }
    .badge-dot {
      width: 6px; height: 6px;
      border-radius: 50%; background: var(--accent);
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.8); }
    }

    .spotlight-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(48px, 7vw, 82px);
      line-height: 0.95;
      color: var(--text);
      margin-bottom: 18px;
      letter-spacing: 1px;
    }

    .spotlight-meta {
      display: flex; gap: 16px; align-items: center;
      margin-bottom: 16px;
      flex-wrap: wrap;
    }
    .meta-tag {
      font-size: 12px; font-weight: 500;
      color: var(--text-muted);
      display: flex; align-items: center; gap: 5px;
    }
    .meta-tag.rating {
      color: var(--accent);
      font-weight: 700;
    }
    .meta-sep {
      width: 3px; height: 3px; border-radius: 50%;
      background: var(--text-muted);
    }

    .spotlight-desc {
      font-size: 15px;
      line-height: 1.7;
      color: var(--text-muted);
      margin-bottom: 28px;
      max-width: 440px;
    }

    .spotlight-actions { display: flex; gap: 12px; align-items: center; }

    .btn-watch {
      font-family: 'DM Sans', sans-serif;
      font-size: 15px; font-weight: 600;
      padding: 13px 30px;
      border-radius: 10px;
      background: var(--accent);
      color: #111; border: none;
      cursor: pointer;
      display: flex; align-items: center; gap: 8px;
      transition: transform 0.2s, box-shadow 0.3s;
    }
    .btn-watch:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 28px var(--accent-glow);
    }
    .btn-watch svg { width: 16px; height: 16px; }

    .btn-info {
      font-family: 'DM Sans', sans-serif;
      font-size: 15px; font-weight: 500;
      padding: 13px 24px;
      border-radius: 10px;
      background: var(--surface2);
      color: var(--text);
      border: 1px solid var(--border);
      cursor: pointer;
      transition: background 0.2s, transform 0.2s;
    }
    .btn-info:hover { background: var(--surface); transform: translateY(-2px); }

    /* ─── MOVIE SELECTOR STRIP ─── */
    .movie-strip {
      position: absolute;
      right: 50px; bottom: 50px;
      z-index: 3;
      display: flex; gap: 14px;
    }

    .movie-card {
      width: 100px; height: 148px;
      border-radius: 12px;
      overflow: hidden;
      cursor: pointer;
      position: relative;
      border: 2px solid transparent;
      transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
      flex-shrink: 0;
      background-size: cover;
      background-position: top center;
    }
    .movie-card::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.6), transparent 50%);
      transition: opacity 0.3s;
    }
    .movie-card:hover { transform: translateY(-6px) scale(1.03); }
    .movie-card:hover::after { opacity: 0.4; }
    .movie-card.active {
      border-color: var(--accent);
      box-shadow: 0 0 0 1px var(--accent), 0 8px 28px var(--accent-glow);
      transform: translateY(-6px);
    }
    .movie-card .card-overlay {
      position: absolute; inset: 0; z-index: 1;
      background: rgba(0,0,0,0);
      transition: background 0.3s;
    }
    .movie-card.active .card-overlay { background: rgba(0,0,0,0.3); }

    /* ─── SECTION: NOW SHOWING ─── */
    .section {
      padding: 70px 60px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .section-header {
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: 32px;
    }
    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 32px; letter-spacing: 1.5px;
      color: var(--text);
    }
    .section-title span { color: var(--accent); }

    .section-link {
      font-size: 13px; font-weight: 500;
      color: var(--text-muted);
      display: flex; align-items: center; gap: 6px;
      transition: color 0.2s;
    }
    .section-link:hover { color: var(--accent); }
    .section-link svg { width: 14px; height: 14px; }

    /* ─── GRID ─── */
    .movies-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
      gap: 20px;
    }

    .grid-card {
      border-radius: 14px; overflow: hidden;
      background: var(--surface);
      border: 1px solid var(--border);
      transition: transform 0.3s, box-shadow 0.3s;
      cursor: pointer;
    }
    .grid-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow);
    }
    .grid-card-poster {
      width: 100%; aspect-ratio: 2/3;
      background: var(--surface2);
      background-size: cover; background-position: top;
      position: relative;
    }
    .grid-card-poster .play-overlay {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      background: rgba(0,0,0,0);
      transition: background 0.3s;
    }
    .grid-card:hover .play-overlay { background: rgba(0,0,0,0.4); }
    .play-icon {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--accent);
      display: flex; align-items: center; justify-content: center;
      opacity: 0; transform: scale(0.7);
      transition: opacity 0.3s, transform 0.3s;
    }
    .grid-card:hover .play-icon { opacity: 1; transform: scale(1); }
    .play-icon svg { width: 18px; height: 18px; fill: #111; margin-left: 3px; }

    .grid-card-info { padding: 12px 14px 14px; }
    .grid-card-title { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
    .grid-card-meta { font-size: 12px; color: var(--text-muted); display: flex; gap: 8px; }
    .grid-card-rating { color: var(--accent); font-weight: 700; }

    /* ─── GENRE PILLS ─── */
    .genre-strip {
      display: flex; gap: 10px; margin-bottom: 30px; flex-wrap: wrap;
    }
    .genre-pill {
      padding: 7px 18px;
      border-radius: 20px;
      font-size: 13px; font-weight: 500;
      background: var(--surface);
      color: var(--text-muted);
      border: 1px solid var(--border);
      cursor: pointer;
      transition: all 0.2s;
    }
    .genre-pill:hover { border-color: var(--accent); color: var(--accent); }
    .genre-pill.active { background: var(--accent); color: #111; border-color: var(--accent); font-weight: 600; }

    /* ─── FOOTER ─── */
    footer {
      border-top: 1px solid var(--border);
      padding: 36px 60px;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 16px;
    }
    .footer-logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 22px; letter-spacing: 2px;
    }
    .footer-logo span { color: var(--accent); }
    .footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
    .footer-links a { font-size: 13px; color: var(--text-muted); transition: color 0.2s; }
    .footer-links a:hover { color: var(--accent); }
    .footer-copy { font-size: 12px; color: var(--text-muted); }

    /* ─── ANIMATIONS ─── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .spotlight-content > * {
      animation: fadeUp 0.7s both;
    }
    .spotlight-badge      { animation-delay: 0.05s; }
    .spotlight-title      { animation-delay: 0.15s; }
    .spotlight-meta       { animation-delay: 0.25s; }
    .spotlight-desc       { animation-delay: 0.32s; }
    .spotlight-actions    { animation-delay: 0.4s; }

    /* Scrollbar */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--surface2); border-radius: 3px; }
  