/* ============================================================
   tokens.css — design tokens for the cinematic dark theme
   ============================================================ */
:root {
  color-scheme: dark;

  /* ---- Fonts ---- */
  --font-display: "Fraunces", ui-serif, Georgia, serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;

  /* ---- Surfaces ---- */
  --bg-0: #07070b;        /* page */
  --bg-1: #0d0d14;        /* surface */
  --bg-2: #15151e;        /* elevated */
  --bg-3: #1e1e2a;        /* hover / active */
  --glass: rgba(13, 13, 20, 0.72);

  /* ---- Text ---- */
  --text-1: #f4f1ea;
  --text-2: #aca8b6;
  --text-3: #6f6b7a;

  /* ---- Lines ---- */
  --line: rgba(244, 241, 234, 0.08);
  --line-strong: rgba(244, 241, 234, 0.16);

  /* ---- Accent (gold default; overridden live by poster color) ---- */
  --accent: #f2c14e;
  --accent-soft: rgba(242, 193, 78, 0.14);
  --accent-glow: rgba(242, 193, 78, 0.38);
  --accent-border: rgba(242, 193, 78, 0.30);
  --accent-focus: rgba(242, 193, 78, 0.55);
  --on-accent: #1a1408;
  --star: var(--accent);

  /* ---- Status ---- */
  --danger: #ff6161;
  --danger-soft: rgba(255, 97, 97, 0.13);
  --success: #4ade80;

  /* ---- Radii ---- */
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  /* ---- Shadows ---- */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.35);
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 28px 80px rgba(0, 0, 0, 0.6);

  /* ---- Layout / motion ---- */
  --tile-min: 150px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --z-ambient: 0;
  --z-topbar: 100;
  --z-overlay: 200;
  --z-toast: 300;
  --z-grain: 400;
}
