:root {
  --bg: #0f0f0f;
  --yellow: #ffcc00;
  --text: #eaeaea;
  --muted: #9a9a9a;
  --card: #161616;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--text); font-family: Arial, Helvetica, sans-serif; }

a { color: var(--yellow); text-decoration: none; }
a.button {
  display: inline-block;
  background: var(--yellow);
  color: #000;
  padding: 14px 22px;
  font-weight: 800;
  border-radius: 6px;
  transition: transform .1s ease, background .1s ease;
}
a.button:hover { transform: translateY(-1px); background: #ffd633; }

header {
  position: sticky; top: 0;
  background: #000;
  border-bottom: 1px solid #222;
  z-index: 10;
}
.nav {
  max-width: 1200px; margin: 0 auto; padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.nav .brand { font-weight: 900; letter-spacing: 1px; }
.nav nav a { margin-left: 14px; font-weight: 700; color: var(--text); }
.nav nav a.active, .nav nav a:hover { color: var(--yellow); }

.container { max-width: 1200px; margin: 0 auto; padding: 40px 20px; }

/* HERO */
.hero {
  position: relative;
  min-height: 420px;
  background: #111;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #222;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: clamp(42px, 8vw, 96px);
  margin: 10px 0;
}
.hero p {
  max-width: 600px;
  color: var(--muted);
  margin-bottom: 20px;
}
.badge {
  display: inline-block;
  background: var(--yellow);
  color: #000;
  padding: 6px 12px;
  font-weight: 800;
  border-radius: 4px;
}
