/* ============================================
   Design Tokens — Netflix-inspired Dark Theme
   ============================================ */
:root {
  /* Backgrounds */
  --bg-primary: #0A0A0E;
  --bg-secondary: #111116;
  --bg-card: #18181E;
  --bg-card-hover: #1F1F28;
  --bg-elevated: #222230;
  --bg-input: #1A1A22;

  /* Text */
  --text-primary: #F0F0F2;
  --text-secondary: #9A9AAE;
  --text-tertiary: #6B6B80;
  --text-muted: #4A4A5C;

  /* Accent — Strong Red */
  --accent: #E50914;
  --accent-hover: #FF1A26;
  --accent-glow: rgba(229, 9, 20, 0.35);
  --accent-subtle: rgba(229, 9, 20, 0.12);

  /* Semantic */
  --success: #2ECC71;
  --warning: #F1C40F;
  --danger: #E74C3C;
  --info: #3498DB;

  /* Borders */
  --border-color: rgba(255, 255, 255, 0.06);
  --border-accent: rgba(229, 9, 20, 0.3);

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;

  /* Shadows */
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.4);
  --shadow-elevated: 0 8px 32px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 30px var(--accent-glow);

  /* Typography */
  --font-display: 'Bebas Neue', cursive;
  --font-body: 'Noto Sans JP', sans-serif;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;

  /* Z-index */
  --z-nav: 100;
  --z-modal: 200;
  --z-toast: 300;
  --z-overlay: 400;

  /* Safe areas */
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --nav-height: 64px;
  --topbar-height: 52px;
}
