/* ============================================================
   Golden Play — Design tokens
   ============================================================ */
:root {
    /* Colors */
    --color-bg-primary: #1B1B1F;
    --color-bg-dark: #131313;
    --color-surface: #262727;
    --color-surface-alt: #1f2021;
    --color-white: #FFFFFF;
    --color-text: #FFFFFF;
    --color-text-muted: #c9c9cf;

    --color-gold: #D1AA41;
    --color-gold-strong: #e0bd57;
    --gradient-gold: linear-gradient(180deg, #8E713A 0%, #282010 100%);

    --color-green: #18AE62;
    --color-green-hover: #27AA5E;
    --color-neutral-btn: #313236;

    --color-heading: #D1AA41;
    --color-on-gold: #000000;

    --color-border: #33343a;
    --color-danger: #d63a3a;

    /* Typography */
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --font-head: 'Montserrat', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --fs-body: 1rem;               /* 16px */
    --fs-h1: clamp(1.75rem, 4vw, 2.6875rem);   /* up to 43px banner */
    --fs-h1-logo: 1.5rem;          /* 24px */
    --fs-h2: 1.125rem;             /* 18px */
    --fs-h3: 1rem;                 /* 16px */
    --fs-small: 0.875rem;

    --lh-body: 1.35;
    --lh-h2: 1.2;
    --lh-banner: 1.05;

    /* Spacing */
    --space-section: clamp(2.5rem, 5vw, 3.75rem);  /* 40-60px */
    --space-cards: 1.625rem;       /* 26px */
    --space-paragraph: 1.25rem;    /* 20px */
    --space-h2-text: 1.25rem;      /* 20px */
    --space-h3-text: 1rem;         /* 16px */
    --space-faq: 0.875rem;         /* 14px */
    --space-card-padding: 1.5rem;  /* 24px */

    --container-max: 1920px;
    --container-pad: clamp(1rem, 4vw, 3.6875rem); /* ~59px sides */
    --main-bottom: 4.5rem;         /* 72px */

    /* Radius */
    --radius-card: 30px;
    --radius-sm: 12px;
    --radius-btn: 10px;
    --radius-pill: 999px;

    /* Card sizing */
    --game-card-w: 150px;

    /* Shadows */
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.35);
    --shadow-header: 0 2px 14px rgba(0, 0, 0, 0.45);

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

    /* Layers */
    --z-header: 1000;
    --z-totop: 900;
}
