/* ===== BASE RESET & VARIABLES ===== */
:root {
  /* Colors */
  --black: #0a0a0a;
  --black-light: #111111;
  --black-card: #0f1510;
  --green: #00ff66;
  --green-dim: #00cc52;
  --green-dark: #003d1a;
  --green-glow: rgba(0, 255, 102, 0.15);
  --green-glow-strong: rgba(0, 255, 102, 0.3);
  --navy: #1a1a2e;
  --purple: #16213e;
  --red: #ff3333;
  --red-dim: #661a1a;
  --white: #e0e0e0;
  --white-bright: #ffffff;
  --gray: #666666;
  --gray-dark: #333333;
  --gray-border: #1a2a1a;

  /* Typography */
  --font-mono: 'JetBrains Mono', 'Space Mono', 'Courier New', monospace;
  --font-display: 'JetBrains Mono', monospace;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;
  --space-3xl: 8rem;

  /* Sizes */
  --container-max: 1200px;
  --nav-height: 64px;
  --border-radius: 4px;
}

/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-mono);
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

a:hover {
  color: var(--white-bright);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

::selection {
  background: var(--green);
  color: var(--black);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.text-green {
  color: var(--green);
}
