/* Design tokens — Meme Football
   Heredado de Stadiums Lights, con tipografía más juguetona (Space Grotesk). */
:root {
  /* Colors */
  --color-bg-start: #000000;
  --color-bg-end: #0d0d0d;
  --color-surface: #1a1a1a;
  --color-surface-alt: #141414;

  --color-accent: #00ff42;
  --color-accent-dark: #00e63d;

  --color-gradient-blue-start: #1e3d59;
  --color-gradient-blue-end: #172a3a;

  --color-text: #f5f5f5;
  --color-text-muted: #a0a0a0;
  --color-border: rgba(255, 255, 255, 0.08);

  /* Typography */
  --font-heading: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;

  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.75rem;
  --fs-2xl: 2.5rem;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;

  /* Radius */
  --radius-card: 20px;
  --radius-sm: 12px;

  /* Layout */
  --max-width: 1200px;
  --header-height: 64px;
}
