:root {
  --bg: #0A0A0A;
  --card: #1A1A1A;
  --border: #2A2A2A;
  --gold: #C9A84C;
  --text: #FFFFFF;
  --muted: #999999;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}
a { color: var(--gold); text-decoration: none; }
a:hover { opacity: 0.8; }
.site-header { padding: 20px 24px; border-bottom: 1px solid var(--border); }
.site-header a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 2px;
}
main { max-width: 720px; margin: 0 auto; padding: 48px 24px; }
h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.tagline {
  color: var(--muted);
  margin-bottom: 32px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
p { margin-bottom: 16px; }
.muted { color: var(--muted); font-size: 14px; }
.landing {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 24px;
}
.landing h1 { font-size: 56px; margin-bottom: 12px; }
.links {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}
.links a {
  padding: 12px 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 14px;
  transition: border-color 0.2s, color 0.2s;
}
.links a:hover { border-color: var(--gold); color: var(--gold); opacity: 1; }
@media (max-width: 480px) {
  .landing h1 { font-size: 40px; }
  h1 { font-size: 32px; }
}
