
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;900&family=Outfit:wght@300;400;500;600&display=swap');
:root {
  --bg-primary: #0a0d14;
  --bg-secondary: #111827;
  --bg-card: #1a2236;
  --accent-green: #00e676;
  --accent-gold: #ffd740;
  --accent-red: #ff1744;
  --text-primary: #f0f4ff;
  --text-muted: #8892a4;
  --border: rgba(0,230,118,0.15);
  --glow-green: 0 0 20px rgba(0,230,118,0.3);
  --glow-gold: 0 0 20px rgba(255,215,64,0.3);
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Outfit', sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  background-color: var(--accent-green);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s;
  mix-blend-mode: difference;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s;
}
a:hover {
  color: var(--accent-green);
}
ul {
  list-style: none;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
section:not(.hero) {
  margin-top: 8rem;
  margin-bottom: 8rem;
}
