:root {
  /* Colors */
  --color-primary: #ef1111;
  --color-primary-dark: #c80e0e;
  --color-accent: #ffa900;
  --color-white: #ffffff;
  --color-black: #030202;
  --color-bg-dark: #201a1b;
  --color-footer-bg: #111010;
  --color-bg-page: #1a1415;
  --color-bg-card: #2a2223;
  --color-bg-card-light: #352c2e;
  --color-text: #ffffff;
  --color-text-muted: rgba(255, 255, 255, 0.8);
  --color-text-dim: rgba(255, 255, 255, 0.6);
  --color-border: rgba(255, 255, 255, 0.12);
  --color-gradient-btn: linear-gradient(98.51deg, #ff0606 0.21%, #ff5111 100%);
  --color-gradient-hero-fade: linear-gradient(180deg, rgba(32, 26, 27, 0) 0%, #201a1b 100%);

  /* Typography */
    --font-primary: 'Roboto', system-ui, -apple-system, sans-serif;
    --font-condensed: 'Roboto Condensed', 'Roboto', sans-serif;
    --font-yanone: 'Yanone Kaffeesatz', sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.4375rem;
  --text-2xl: 1.5rem;
  --text-hero-accent: 6.1875rem;
  --text-hero-main: 9.1875rem;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-section: 5rem;

  /* Layout */
  --container-max: 1200px;
  --gutter-mobile: 1rem;
  --gutter-tablet: 2rem;
  --gutter-desktop: 120px;
  --header-height: 74px;
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-pill: 50px;

  /* Breakpoints (for reference in media queries) */
  --bp-tablet: 768px;
  --bp-desktop: 1024px;
  --bp-wide: 1440px;

  /* Shadows */
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.35);
  --transition: 0.2s ease;
}
