/* Global styles adapted from Figma/styles/global.css */
:root {
  --color-primary: #00d4ff;
  --color-primary-dark: #0099cc;
  --color-attack: #ff3b3b;
  --color-attack-dark: #cc0000;
  --color-defense: #00ff88;
  --color-defense-dark: #00cc66;
  --color-reward: #ffd700;
  --color-reward-dark: #ccaa00;
  --color-panel: #141823;
  --color-panel-border: #1f2937;
  --color-panel-hover: #1a1f2e;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #0a0e17;
  color: #f3f4f6;
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 1rem 0;
}

h2 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 0.75rem 0;
}

h3 {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 0.5rem 0;
}

p {
  margin: 0 0 1rem 0;
  line-height: 1.6;
}

button {
  font-family: inherit;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #0a0e17;
}

::-webkit-scrollbar-thumb {
  background: #374151;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #4b5563;
}

.stat-number {
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.glow-primary {
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.glow-attack {
  box-shadow: 0 0 20px rgba(255, 59, 59, 0.3);
}

.glow-defense {
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.glow-reward {
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.sidebar-item.is-active {
  background: rgba(0, 212, 255, 0.2);
  color: #00d4ff;
  border: 1px solid rgba(0, 212, 255, 0.3);
}
