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

  /* CTA gradient */
  --btn-cta-gradient: linear-gradient(180deg, #8cff4b 0%, #19c93f 100%);
  --btn-secondary-border: #c18a2e;  /* Login, See more, Learn more */

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

  --fs-body: clamp(0.875rem, 0.8rem + 0.4vw, 1rem);   /* 14–16px */
  --fs-h1: clamp(2.25rem, 1.6rem + 3vw, 3rem);        /* 36–48px */
  --fs-h2: clamp(1.625rem, 1.3rem + 1.6vw, 2.125rem); /* 26–34px */
  --fs-h3: clamp(1.25rem, 1.1rem + 0.7vw, 1.5rem);    /* 20–24px */
  --line-height: 1.6;

  /* ---- Spacing & grid ---- */
  --space-section: clamp(2.5rem, 2rem + 2vw, 3.75rem); /* 40–60px between sections */
  --space-card-gap: 1.25rem;   /* 20px between cards */
  --space-paragraph: 1.25rem;  /* 20px between paragraphs */
  --space-h2-text: 1.25rem;    /* 20px between H2 and its text */
  --space-h3-text: 1rem;       /* 16px between H3 and its text */
  --space-faq: 0.875rem;       /* 14px between FAQ items */
  --space-card-padding: 1.5rem;/* 24px card inner padding */
  --container-max: 1440px;
  --content-max: 1100px;       /* narrower reading column for prose */
  --radius-card: 6px;
  --radius-pill: 999px;

  /* ---- Misc ---- */
  --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;
  --header-h: 72px;
}
