:root {
  /* ── Brand Colors ── */
  --black:        #000000;
  --gold:          #FFD700;
  --gold-dark:     #B8960C;
  --gold-light:    #FFE44D;
  --white:         #FFFFFF;
  --gray-100:     #F5F5F5;
  --gray-200:     #E0E0E0;
  --gray-300:     #C0C0C0;
  --gray-400:     #A0A0A0;
  --gray-500:     #808080;
  --gray-600:     #606060;
  --gray-700:     #404040;
  --gray-800:     #252525;
  --gray-900:     #121212;
  --red:          #FF3B3B;
  --green:        #00E676;
  --blue:         #448AFF;
  --orange:       #FF9100;
  --purple:       #B388FF;

  /* ── Gradients ── */
  --gradient-gold:    linear-gradient(135deg, var(--gold), var(--gold-dark));
  --gradient-dark:    linear-gradient(135deg, var(--gray-900), var(--black));
  --gradient-hero:    linear-gradient(135deg, rgba(0,0,0,0.95), rgba(0,0,0,0.7));
  --gradient-card:    linear-gradient(145deg, rgba(30,30,30,0.95), rgba(10,10,10,0.98));
  --gradient-sidebar: linear-gradient(180deg, #0a0a0a, #000000);

  /* ── Typography ── */
  --font-display:  'Orbitron', sans-serif;
  --font-heading:  'Bebas Neue', sans-serif;
  --font-accent:   'Anton', sans-serif;
  --font-body:     'Inter', sans-serif;

  /* ── Font Sizes ── */
  --text-xs:    0.75rem;
  --text-sm:    0.875rem;
  --text-base:  1rem;
  --text-lg:    1.125rem;
  --text-xl:    1.25rem;
  --text-2xl:   1.5rem;
  --text-3xl:   1.875rem;
  --text-4xl:   2.25rem;
  --text-5xl:   3rem;
  --text-6xl:   3.75rem;
  --text-7xl:   4.5rem;

  /* ── Spacing ── */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;

  /* ── Border Radius ── */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   16px;
  --radius-2xl:  24px;
  --radius-full: 9999px;

  /* ── Shadows ── */
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.3);
  --shadow-md:    0 4px 12px rgba(0,0,0,0.4);
  --shadow-lg:    0 8px 30px rgba(0,0,0,0.5);
  --shadow-gold:  0 4px 20px rgba(255,215,0,0.15);
  --shadow-glow:  0 0 40px rgba(255,215,0,0.2);

  /* ── Transitions ── */
  --transition-fast:   150ms ease;
  --transition-base:  300ms ease;
  --transition-slow:   500ms ease;
  --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* ── Z-Index ── */
  --z-dropdown:  100;
  --z-sticky:    200;
  --z-overlay:   300;
  --z-modal:     400;
  --z-toast:     500;
  --z-tooltip:   600;

  /* ── Layout ── */
  --sidebar-width:    280px;
  --sidebar-collapsed: 72px;
  --header-height:    64px;
  --player-height:    80px;
  --max-content:      1400px;
}

/* ── Dark theme (default) ── */
[data-theme="dark"] {
  --bg-primary:    var(--black);
  --bg-secondary:  var(--gray-900);
  --bg-card:       var(--gray-800);
  --bg-hover:      var(--gray-700);
  --text-primary:  var(--white);
  --text-secondary: var(--gray-400);
  --text-muted:    var(--gray-500);
  --border-color:  var(--gray-700);
}

[data-theme="light"] {
  --bg-primary:    var(--gray-100);
  --bg-secondary:  var(--white);
  --bg-card:       var(--white);
  --bg-hover:      var(--gray-200);
  --text-primary:  var(--gray-900);
  --text-secondary: var(--gray-600);
  --text-muted:    var(--gray-500);
  --border-color:  var(--gray-200);
}