/* ==========================================================================
   Wild Casino — Design tokens (CSS Custom Properties)
   ========================================================================== */
:root {
  /* Colors */
  --color-bg-primary: #0b100c;
  --color-bg-dark: #151515;
  --color-accent-light: #31b83f;
  --color-white: #ffffff;
  --color-text-main: #b8b8b8;
  --color-heading-accent: #ffd21f;
  --color-text-dark: #151515;
  --gradient-accent: linear-gradient(180deg, #ffb72b 0%, #ff7a00 100%);
  --color-border-btn: #ffffff;
  --color-danger: #e5342b;

  /* Typography */
  --font-family-base: 'Montserrat', system-ui, -apple-system, sans-serif;
  --fs-body: clamp(0.875rem, 0.8rem + 0.3vw, 1rem);
  --fs-small: clamp(0.8125rem, 0.78rem + 0.15vw, 0.875rem);
  --fs-h1: clamp(2.125rem, 1.7rem + 1.8vw, 2.875rem);
  --fs-h2: clamp(1.625rem, 1.4rem + 1vw, 2rem);
  --fs-h3: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
  --fs-lead: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --line-height-base: 1.6;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;

  /* Spacing — applied as padding-block on consecutive sections, so two
     stacked sections combine to the 40–60px total gap called for in the
     spec (each side contributes half). */
  --space-section: clamp(1.25rem, 1rem + 1.25vw, 1.875rem);
  --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: 1440px;
  --container-padding: clamp(1rem, 3vw, 2.5rem);
  --radius-card: 0.375rem;
  --radius-pill: 999px;

  /* Effects */
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.35);
  --transition-base: 0.2s ease;
  --header-height: 76px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms;
    animation-iteration-count: 1;
    transition-duration: 0.001ms;
    scroll-behavior: auto;
  }
}
