/* Flat2VR Creators Portal — design tokens
   Base palette matches flat2vrstudios.com (blacks/blues/purples); pink is a
   new accent for this app's status/embargo/priority badges. */

:root {
  --bg-darkest: #060f16;
  --bg-dark: #0a1620;
  --bg-card: #0d1a28;
  --bg-card-2: #101f30;

  --purple: #7c3aed;
  --purple-hover: #6d28d9;
  --teal: #06b6d4;
  --teal-dark: #0891b2;
  --pink: #ec4899;
  --pink-hover: #db2777;

  --text: #ffffff;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --border: rgba(255, 255, 255, 0.07);

  --success: #22c55e;
  --warn: #f59e0b;
  --danger: #ef4444;

  --radius: 12px;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --nav-w: 240px;

  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --shadow-card: 0 12px 28px rgba(0, 0, 0, 0.35);
  --easing: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg-darkest);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 0.01em;
  margin: 0;
}

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--pink); }

button, input, select, textarea { font-family: var(--font-body); }
