/* ==========================================================================
   Design tokens — Super Slots
   All colors, typography, spacing, radii and transitions as CSS Custom
   Properties. No magic numbers anywhere else in the codebase.
   ========================================================================== */

:root {
  /* ---------- Colors ---------- */
  --color-bg-primary: #3b0047;
  --color-bg-dark: #26002f;
  --color-accent-light: #ffd12a;
  --color-white: #ffffff;
  --color-btn-accent-start: #ffe15a;
  --color-btn-accent-end: #ffb000;
  --color-btn-secondary-border: #ffbf16;
  --color-text-primary: #c7b6d6;
  --color-heading-gold: #ffd429;
  --color-btn-text-dark: #1b1020;
  --color-card-bg: #4b0057;
  --color-accent-blue: #1798f5;

  --gradient-btn-accent: linear-gradient(180deg, var(--color-btn-accent-start) 0%, var(--color-btn-accent-end) 100%);

  /* ---------- Typography ---------- */
  --font-family-base: 'Inter', 'Segoe UI', Roboto, Arial, sans-serif;
  --font-size-base: clamp(0.875rem, 0.8rem + 0.3vw, 1rem);
  --font-size-h1: clamp(2.25rem, 1.8rem + 2vw, 3rem);
  --font-size-h2: clamp(1.625rem, 1.4rem + 1vw, 2.125rem);
  --font-size-h3: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
  --line-height-base: 1.6;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-heavy: 800;

  /* ---------- Spacing ---------- */
  --space-section: clamp(2.5rem, 2rem + 2vw, 3.75rem);
  --space-card-gap: 1.25rem;
  --space-paragraph: 1.25rem;
  --space-h2-text: 1.25rem;
  --space-h3-text: 1rem;
  --space-faq-gap: 1rem;
  --space-card-padding: 1.5rem;

  /* ---------- Layout ---------- */
  --container-max-width: 90rem; /* 1440px */
  --radius-card: 0.375rem; /* 6px */

  /* ---------- Effects ---------- */
  --shadow-card: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.35);
  --transition-fast: 0.18s ease;
  --transition-base: 0.25s ease;

  /* ---------- Z-index ---------- */
  --z-header: 100;
  --z-overlay: 200;
  --z-scroll-top: 90;
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --transition-fast: 0s;
    --transition-base: 0s;
  }
}
