/* ============================================
   PlayNaw - Design Variables
   Hanya 3 warna utama: Merah, Putih, Hitam
   Ubah nilai di sini saja untuk mengubah seluruh tema
   ============================================ */

:root {
  /* Primary Colors */
  --color-red: #E50914;
  --color-red-hover: #B20710;
  --color-red-soft: rgba(229, 9, 20, 0.15);
  --color-red-glow: rgba(229, 9, 20, 0.4);

  --color-white: #FFFFFF;
  --color-white-soft: rgba(255, 255, 255, 0.85);
  --color-white-muted: rgba(255, 255, 255, 0.6);
  --color-white-faint: rgba(255, 255, 255, 0.1);

  --color-black: #000000;
  --color-black-soft: #0a0a0a;
  --color-black-card: #141414;
  --color-black-elevated: #1a1a1a;
  --color-black-border: #2a2a2a;

  /* Typography */
  --font-main: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-display: 'Inter', 'Segoe UI', system-ui, sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.6);
  --shadow-red: 0 4px 20px var(--color-red-glow);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Layout */
  --header-height: 70px;
  --container-max: 1280px;
  --container-padding: 1.25rem;
}