/* THE GREI SHOW - CINEMATIC DESIGN SYSTEM v2 (GLOBAL POLISH PASS) */

:root {
  /* Core palette */
  --bg: #0b0b0f;
  --surface: #11111a;
  --surface-2: #161625;

  --text: #ffffff;
  --text-dim: rgba(255,255,255,0.72);

  --accent: #8a7dff;
  --accent-2: #00c8ff;

  /* Legacy compatibility */
  --primary: var(--text);
  --bg-light: var(--surface);
  --text-light: var(--text-dim);

  /* Spacing system */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;

  /* Shadows & glow */
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.25);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.35);
  --glow: 0 0 25px rgba(138,125,255,0.25);
  --glow-strong: 0 0 40px rgba(138,125,255,0.4);

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

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  letter-spacing: 1px;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

a:hover {
  opacity: 0.85;
}

/* Global card system */
.card, .track-card, .featured {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

/* Buttons baseline */
button {
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: var(--radius-md);
}

/* Motion polish */
* {
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
