/* ==========================================================================
   Super Slots — Design Tokens
   All colors, typography, spacing, radii, shadows, transitions live here.
   ========================================================================== */

:root {
  /* Colors */
  --color-bg-primary: #3b0047;
  --color-bg-dark: #26002f;
  --color-accent-yellow: #ffd12a;
  --color-white: #ffffff;
  --color-btn-gradient: linear-gradient(180deg, #ffe15a 0%, #ffb000 100%);
  --color-btn-secondary-border: #ffbf16;
  --color-text-primary: #c7b6d6;
  --color-heading-gold: #ffd429;
  --color-text-on-btn: #1b1020;
  --color-card-bg: #4b0057;
  --color-accent-blue: #1798f5;
  --color-focus-ring: #ffd12a;
  --color-danger-bg: #e2231a;

  /* Typography */
  --font-family-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --fs-body: clamp(0.875rem, 0.8rem + 0.3vw, 1rem);
  --fs-small: clamp(0.75rem, 0.7rem + 0.2vw, 0.875rem);
  --fs-h1: clamp(2.25rem, 1.9rem + 1.6vw, 3rem);
  --fs-h2: clamp(1.625rem, 1.4rem + 1vw, 2.125rem);
  --fs-h3: clamp(1.25rem, 1.15rem + 0.4vw, 1.5rem);
  --line-height-base: 1.6;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-btn: 700;
  --fw-heading: 800;

  /* Spacing */
  --space-section: clamp(1.75rem, 1.4rem + 1.5vw, 2.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: 1440px;
  --radius-card: 6px;
  --border-card: none;

  /* Motion */
  --transition-fast: 0.18s ease;
  --transition-base: 0.28s ease;

  /* Shadows */
  --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-header: 0 2px 12px rgba(0, 0, 0, 0.4);
}
