/**
 * Design tokens — CSS Custom Properties
 * Bizzo Casino — Slovenia (bizzo-igralnica.com)
 */
:root {
  /* Colors */
  --color-bg-primary: #210728;
  --color-bg-dark: #17051d;
  --color-accent-light: #ffd329;
  --color-white: #F1F4F4;
  --color-btn-accent-start: #8cff4b;
  --color-btn-accent-end: #19c93f;
  --color-btn-secondary-border: #c18a2e;
  --color-text-body: #b9a9c4;
  --color-heading-gold: #ffd429;
  --color-text-on-light: #102013;
  --color-card-bg: #2b0d36;
  --color-accent-neon: #22d943;
  --color-overlay: rgba(23, 5, 29, 0.72);
  --color-focus: #ffd429;
  --color-error: #ff6b6b;

  --gradient-accent: linear-gradient(180deg, var(--color-btn-accent-start) 0%, var(--color-btn-accent-end) 100%);

  /* Typography */
  --font-family-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --fs-body: clamp(0.875rem, 1.2vw, 1rem);
  --fs-small: 0.8125rem;
  --fs-h1: clamp(2.25rem, 4vw, 3rem);
  --fs-h2: clamp(1.625rem, 2.6vw, 2.125rem);
  --fs-h3: clamp(1.25rem, 1.8vw, 1.5rem);
  --line-height-base: 1.6;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-black: 800;

  /* Spacing */
  --space-section: clamp(2.5rem, 5vw, 3.75rem);
  /* Smaller, "natural" prose rhythm between consecutive content blocks
     within the same article — deliberately tighter than --space-section,
     which is reserved for real section breaks. */
  --space-block-gap: clamp(1.75rem, 3.5vw, 2.75rem);
  --space-section-half: 1.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;
  --space-container-padding: 1.25rem;

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

  /* Effects */
  --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.35);
  --transition-base: 200ms ease;
  --transition-reveal: 500ms ease;

  /* z-index */
  --z-header: 100;
  --z-toc: 20;
  --z-to-top: 90;
}
