/* ═══════════════════════════════════════════════
   variables.css — Design Tokens for Projekt Vinyl
   ═══════════════════════════════════════════════ */

:root {
  /* ── Core Palette ── */
  --pure-dark: #000;
  --pv-dark: #1a1c22;
  --pv-dark-2: #22252e;
  --pv-dark-3: #2b2f3a;
  --pv-dark-4: #353a47;
  --pv-card-bg: #252830;
  --pv-card-border: rgba(255, 255, 255, 0.06);

  /* ── Accent ── */
  --pv-blue: #b31718;
  --pv-blue-hover: #3a6ce0;
  --pv-blue-glow: rgba(74, 124, 246, 0.25);
  --pv-blue-light: rgba(74, 124, 246, 0.12);

  /* ── Text ── */
  --pure-white: #fff;
  --pv-text: #e8eaf0;
  --pv-text-muted: #8b919e;
  --pv-text-dim: #5c6270;
  --pv-white: #ffffff;

  /* ── Gold Accent (stars/badges) ── */
  --pv-gold: #f5a623;

  /* ── Typography ── */
  --font-display: "Rajdhani", sans-serif;
  --font-body: "Barlow", sans-serif;

  /* ── Spacing ── */
  --section-py: 100px;
  --section-py-sm: 64px;

  /* ── Borders & Radii ── */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --border: 1px solid rgba(255, 255, 255, 0.07);

  /* ── Shadows ── */
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px rgba(74, 124, 246, 0.2);

  /* ── Transitions ── */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
