/* Copyright (c) 2026 Maxx Gamble. All rights reserved.
 * Part of CommandCentre. Unauthorized copying, modification, or distribution is prohibited. */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Space+Grotesk:wght@600;700&display=swap');

*{box-sizing:border-box;margin:0;padding:0}

:root {
  --gold: #FFB400;
  --gold-dim: rgba(255,180,0,0.12);
  --gold-border: rgba(255,180,0,0.3);
  --bk: #0A0A0A;
  --s1: #111111;
  --s2: #161616;
  --s3: #0D0D0D;
  --bd: #1E1E1E;
  --bd2: #2A2A2A;
  --txt: #FFFFFF;
  --m1: #888888;
  --m2: #555555;
  --green: #4CAF50;
  --green-dim: rgba(76,175,80,0.12);
  --red: #FF5252;
  --red-dim: rgba(255,82,82,0.12);
  --amber: #FF8C42;
  --amber-dim: rgba(255,140,66,0.15);
  --blue: #4A9EFF;
  --blue-dim: rgba(74,158,255,0.12);
  --purple: #C084FC;
  --purple-dim: rgba(192,132,252,0.12);
  --r: 10px;
  --rl: 16px;
}

html, body {
  min-height: 100vh;
  background: var(--bk);
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--txt);
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
}

h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
}

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

::selection { background: var(--gold); color: var(--bk); }
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--s1); }
::-webkit-scrollbar-thumb { background: var(--bd2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--m2); }
