/* tokens.css — CSS Custom Properties: all design tokens */
:root {
  /* Colors */
  --c-bg-primary: #210728;   /* page bg, header, footer */
  --c-bg-dark: #17051d;      /* deeper dark blocks, game sections */
  --c-accent-light: #ffd329; /* badges, active plates */
  --c-white: #F1F4F4;        /* main light text on dark */
  --c-text: #b9a9c4;         /* body text, menu, descriptions */
  --c-heading: #ffd429;      /* H2, decorative lines, gold accents */
  --c-btn-dark-text: #102013;/* text inside light buttons */
  --c-card: #2b0d36;         /* game cards, panels, content blocks */
  --c-neon: #22d943;         /* register buttons, bright CTA accents */
  --c-btn-outline: #c18a2e;  /* secondary button border */

  /* Gradients */
  --grad-cta: linear-gradient(180deg, #8cff4b 0%, #19c93f 100%);

  /* Semantic surfaces */
  --c-card-2: #351044;
  --c-border-soft: rgba(241, 244, 244, 0.08);
  --c-overlay: rgba(15, 3, 20, 0.72);

  /* Typography */
  --font-sans: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extra: 800;

  --fs-body: clamp(0.95rem, 1.6vw, 1rem);     /* 14–16px */
  --fs-h1: clamp(2.25rem, 5vw, 3rem);          /* 36–48px */
  --fs-h2: clamp(1.625rem, 3.4vw, 2.125rem);   /* 26–34px */
  --fs-h3: clamp(1.25rem, 2.4vw, 1.5rem);      /* 20–24px */
  --lh-base: 1.6;

  /* Spacing */
  --sp-section: clamp(2.5rem, 5vw, 3.75rem);   /* 40–60px between sections */
  --sp-grid-gap: 1.25rem;                       /* 20px cards */
  --sp-paragraph: 1.25rem;                       /* 20px between paragraphs */
  --sp-h2-text: 1.25rem;                         /* 20px H2 → text */
  --sp-h3-text: 1rem;                            /* 16px H3 → text */
  --sp-faq-gap: 0.875rem;                        /* 14px between FAQ items */
  --sp-card-pad: 1.5rem;                          /* 24px card padding */

  /* Layout */
  --container-max: 1440px;
  --container-pad: clamp(1rem, 4vw, 2rem);
  --radius: 6px;
  --radius-lg: 10px;

  /* Effects */
  --shadow-card: 0 6px 20px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 2px 10px rgba(0, 0, 0, 0.25);
  --transition: 0.25s ease;
  --transition-fast: 0.15s ease;

  /* Header */
  --header-h: 72px;
  --z-header: 1000;
}
