/* ==========================================================================
   Bizzo Casino — Design tokens (Раздел 2)
   All design values live here as CSS Custom Properties.
   ========================================================================== */
:root {
    /* --- Colors --- */
    --color-bg-primary: #210728;   /* page bg, header, footer */
    --color-bg-dark: #17051d;      /* deeper dark blocks, game sections */
    --color-accent-light: #ffd329; /* badges, active chips */
    --color-white: #f1f4f4;        /* main light text on dark */
    --color-text: #b9a9c4;         /* body text, menu, descriptions */
    --color-heading: #ffd429;      /* H2, decorative lines, accents */
    --color-card: #2b0d36;         /* game cards, panels, content blocks */
    --color-neon: #22d943;         /* register buttons, bright CTA accents */
    --color-btn-dark-text: #102013;/* text inside light buttons */

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

    /* Secondary button */
    --btn-secondary-border: #c18a2e;

    /* Derived / utility */
    --color-border-soft: rgba(255, 212, 41, 0.18);
    --color-overlay: rgba(23, 5, 29, 0.72);
    --color-card-hover: #370f45;

    /* --- Typography --- */
    --font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "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, 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.2vw, 1.5rem);         /* 20–24px */
    --fs-small: clamp(0.8125rem, 1.4vw, 0.9375rem);
    --line-height: 1.6;

    /* --- Spacing & grid --- */
    --space-section: clamp(2.5rem, 6vw, 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 text */
    --space-h3-text: 1rem;                          /* 16px between H3 and text */
    --space-faq: 0.875rem;                          /* 14px between FAQ items */
    --space-card-padding: 1.5rem;                   /* 24px card padding */

    --container-max: 1440px;
    --radius-card: 6px;
    --radius-pill: 999px;

    /* --- Effects --- */
    --shadow-card: 0 6px 20px rgba(0, 0, 0, 0.35);
    --shadow-header: 0 2px 14px rgba(0, 0, 0, 0.45);
    --transition-fast: 0.18s ease;
    --transition-med: 0.28s ease;

    /* Layout helpers */
    --header-height: 72px;
}
