/* ============================================
   CASINO VICTORIA - DESIGN TOKENS
   Light-dominant theme with terracotta accent
   Archetype 7: Sport / High-Energy
   ============================================ */

:root {
  /* === COLOR PALETTE === */
  --color-primary: #F5F5F5;       /* Background (light) */
  --color-primary-dark: #FFFFFF;  /* Main surface */
  
  --color-accent: #C85A3A;        /* Terracotta / Rust (main accent) */
  --color-accent-light: #D97C4B;  /* Light terracotta */
  --color-accent-dark: #A3441A;   /* Dark terracotta */
  
  --color-text: #1A1A1A;          /* Main text (dark) */
  --color-text-secondary: #666666; /* Secondary text */
  --color-text-muted: #999999;    /* Muted text */
  
  --color-border: #E0E0E0;        /* Light border */
  --color-border-dark: #CCCCCC;   /* Dark border */
  
  --color-success: #4CAF50;
  --color-warning: #FFC107;
  --color-danger: #F44336;
  
  /* === TYPOGRAPHY === */
  --font-display: 'Sora', sans-serif;
  --font-body: 'Outfit', sans-serif;
  
  /* Font sizes (mobile-first) */
  --text-xs: 0.75rem;       /* 12px */
  --text-sm: 0.875rem;      /* 14px */
  --text-base: 1rem;        /* 16px */
  --text-lg: 1.125rem;      /* 18px */
  --text-xl: 1.25rem;       /* 20px */
  --text-2xl: 1.5rem;       /* 24px */
  --text-3xl: 2rem;         /* 32px */
  --text-4xl: 2.5rem;       /* 40px */
  --text-5xl: 3rem;         /* 48px */
  
  /* Line heights */
  --leading-tight: 1.1;
  --leading-snug: 1.2;
  --leading-normal: 1.5;
  --leading-relaxed: 1.6;
  
  /* Font weights */
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-extrabold: 800;
  
  /* === SPACING === */
  --space-0: 0;
  --space-1: 0.25rem;   /* 4px */
  --space-2: 0.5rem;    /* 8px */
  --space-3: 0.75rem;   /* 12px */
  --space-4: 1rem;      /* 16px */
  --space-6: 1.5rem;    /* 24px */
  --space-8: 2rem;      /* 32px */
  --space-10: 2.5rem;   /* 40px */
  --space-12: 3rem;     /* 48px */
  --space-16: 4rem;     /* 64px */
  --space-20: 5rem;     /* 80px */
  --space-24: 6rem;     /* 96px */
  
  /* === BORDER RADIUS === */
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;
  
  /* === SHADOWS === */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 16px 32px rgba(0, 0, 0, 0.18);
  
  /* === TRANSITIONS & ANIMATIONS === */
  --transition-fast: 150ms ease-out;
  --transition-base: 300ms ease-out;
  --transition-slow: 500ms ease-out;
  
  /* === CONTAINER === */
  --container-max: 1200px;
  --container-padding: var(--space-4);
}

/* Responsive container padding */
@media (min-width: 768px) {
  :root {
    --container-padding: var(--space-8);
  }
}

@media (min-width: 1024px) {
  :root {
    --container-padding: var(--space-12);
  }
}

/* === HIGH ENERGY ACCENT SHADES === */
:root {
  --accent-rgba-10: rgba(200, 90, 58, 0.1);
  --accent-rgba-20: rgba(200, 90, 58, 0.2);
  --accent-rgba-50: rgba(200, 90, 58, 0.5);
}

/* === PREFERS REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  :root {
    --transition-fast: 0ms;
    --transition-base: 0ms;
    --transition-slow: 0ms;
  }
}
