:root {
  /* Brand palette — P77 India crimson casino theme */
  --color-bg:           #0e0406;    /* Near-black with warm red tint */
  --color-surface:      #1b0a0e;    /* Card / panel background */
  --color-surface-2:    #2b0f15;    /* Elevated surface */
  --color-primary:      #d81f3a;    /* Casino crimson (CTA) */
  --color-primary-dark: #ad1329;    /* Hover state */
  --color-primary-glow: #ff3355;    /* Bright accent for glows/gradients */
  --color-maroon:       #6f0d16;    /* Deep maroon (gradient base) */
  --color-gold:         #f5c542;    /* Accent for badges / highlight */
  --color-text:         #f7e9eb;    /* Main body text */
  --color-text-muted:   #cc99a1;    /* Subtitles, metadata */
  --color-border:       #401824;    /* Dividers */
  --color-danger:       #ff6b5e;    /* Warnings */
  --color-on-primary:   #ffffff;    /* Text/icons on primary buttons */

  /* Typography */
  --font-display:  'Rajdhani', 'Exo 2', sans-serif;
  --font-body:     'Inter', 'Noto Sans', sans-serif;
  --font-mono:     'JetBrains Mono', monospace;

  /* Type scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;

  /* Spacing */
  --space-1:  0.25rem;  --space-2:  0.5rem;
  --space-3:  0.75rem;  --space-4:  1rem;
  --space-6:  1.5rem;   --space-8:  2rem;
  --space-12: 3rem;     --space-16: 4rem;
  --space-24: 6rem;

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

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 28px rgba(216,31,58,0.35);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Layout */
  --max-width: 1200px;
  --header-h:  76px;
}
