:root {
  /* ===== COULEURS PRINCIPALES ===== */
  /* Dark Neon Festival Theme */
  --color-bg-dark: #0B0B10;
  --color-bg-darker: #05050a;
  --color-bg-card: #1a1a24;

  /* Neon Colors - Inspirées du Logo */
  --color-cyan: #00D9FF;
  --color-pink: #FF2D95;
  --color-yellow: #FFD700;
  --color-orange: #FF8C42;
  --color-purple: #B794F6;

  /* Couleurs Texte */
  --color-text-primary: #F4F4F6;
  --color-text-secondary: #C8C8D8;
  /* Lighter for better mobile readability */
  --color-text-muted: #A0A0B0;
  /* Lighter for better mobile readability */

  /* ===== GRADIENTS ===== */
  --gradient-primary: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-purple) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--color-pink) 0%, var(--color-orange) 100%);
  --gradient-card: linear-gradient(145deg, rgba(26, 26, 36, 0.8) 0%, rgba(11, 11, 16, 0.9) 100%);
  --gradient-hover: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-pink) 50%, var(--color-orange) 100%);

  /* ===== TYPOGRAPHIE ===== */
  /* Google Fonts: Fredoka (Headings) + Inter (Body) */
  --font-heading: 'Fredoka', 'Nunito', 'Baloo 2', sans-serif;
  --font-body: 'Inter', 'Poppins', sans-serif;

  /* Font Sizes */
  --text-xs: 0.75rem;
  /* 12px */
  --text-sm: 0.875rem;
  /* 14px */
  --text-base: 1rem;
  /* 16px */
  --text-lg: 1.125rem;
  /* 18px */
  --text-xl: 1.25rem;
  /* 20px */
  --text-2xl: 1.5rem;
  /* 24px */
  --text-3xl: 1.875rem;
  /* 30px */
  --text-4xl: 2.25rem;
  /* 36px */
  --text-5xl: 3rem;
  /* 48px */
  --text-6xl: 3.75rem;
  /* 60px */

  /* ===== SPACING ===== */
  --spacing-xs: 0.5rem;
  /* 8px */
  --spacing-sm: 0.75rem;
  /* 12px */
  --spacing-md: 1rem;
  /* 16px */
  --spacing-lg: 1.5rem;
  /* 24px */
  --spacing-xl: 2rem;
  /* 32px */
  --spacing-2xl: 3rem;
  /* 48px */
  --spacing-3xl: 4rem;
  /* 64px */
  --spacing-4xl: 6rem;
  /* 96px */

  /* ===== BORDER RADIUS ===== */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  /* ===== SHADOWS & GLOWS ===== */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.6);

  /* Neon Glows */
  --glow-cyan: 0 0 20px rgba(0, 217, 255, 0.4), 0 0 40px rgba(0, 217, 255, 0.2);
  --glow-pink: 0 0 20px rgba(255, 45, 149, 0.4), 0 0 40px rgba(255, 45, 149, 0.2);
  --glow-orange: 0 0 20px rgba(255, 140, 66, 0.4), 0 0 40px rgba(255, 140, 66, 0.2);
  --glow-purple: 0 0 20px rgba(183, 148, 246, 0.4), 0 0 40px rgba(183, 148, 246, 0.2);

  /* ===== TRANSITIONS ===== */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* ===== Z-INDEX ===== */
  --z-background: -1;
  --z-content: 1;
  --z-card: 10;
  --z-header: 100;
  --z-floating: 500;
  --z-modal: 1000;
  --z-tooltip: 1100;
}

/* ===== PRÉFÈRE MOUVEMENT RÉDUIT ===== */
@media (prefers-reduced-motion: reduce) {
  :root {
    --transition-fast: 0s;
    --transition-normal: 0s;
    --transition-slow: 0s;
    --transition-bounce: 0s;
  }
}