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

:root {
  --bg: #000;
  --text: #fff;
  --text-muted: #999;
  --border: #222;
  --font-display: 'Bebas Neue', system-ui, sans-serif;
  --font: 'DM Sans', system-ui, sans-serif;
  --max-w: 960px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Nav ───────────────────────────────────────── */

.nav {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text);
}

nav { display: flex; gap: 36px; }

nav a {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}

nav a:hover { color: var(--text); }

/* ── Hero ──────────────────────────────────────── */

.hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 110px 24px 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-inner { flex: 1; }

h1 {
  font-family: var(--font-display);
  font-size: clamp(80px, 12vw, 140px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin-bottom: 28px;
}

.big-junk {
  display: block;
  color: var(--text);
}

.subtext {
  font-size: 17px;
  font-weight: 400;
  color: var(--text-muted);
  max-width: 420px;
  margin-bottom: 44px;
  line-height: 1.75;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid #333;
  color: var(--text);
  background: transparent;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 100px;
  transition: border-color 0.15s, color 0.15s, transform 0.15s;
}

.btn:hover {
  border-color: var(--text);
  transform: translateY(-2px);
}

/* ── Hero Badge ────────────────────────────────── */

.hero-badge {
  flex-shrink: 0;
}

.badge-ring {
  width: 320px;
  height: 320px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spin 20s linear infinite;
}

.badge-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--text-muted);
}

.badge-center {
  font-size: 80px;
  animation: spin-reverse 20s linear infinite;
  display: block;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes spin-reverse {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}

/* ── Games ─────────────────────────────────────── */

.games {
  border-top: 1px solid var(--border);
  padding: 80px 0;
}

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 40px;
  font-family: monospace;
}

.game-row {
  border-top: 1px solid var(--border);
  padding: 36px 0;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  transition: opacity 0.15s;
}

.game-row:last-child {
  border-bottom: 1px solid var(--border);
}

.game-row.dim { opacity: 0.4; }
.game-row.dim:hover { opacity: 0.65; }

.game-row-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.game-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: monospace;
}

.game-row-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.platform-badge,
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid #2a2a2a;
  color: var(--text-muted);
  background: transparent;
}

.status-badge {
  border-color: transparent;
  background: #111;
  color: #666;
}

.game-row-body h3 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  color: var(--text);
}

.game-row-body p {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 500px;
}


/* ── Footer ────────────────────────────────────── */

.footer {
  border-top: 1px solid var(--border);
  padding: 64px 24px;
  text-align: center;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.tagline-line {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: clamp(60px, 10vw, 120px);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 24px;
  color: var(--text);
}

/* hidden until highlighted */
.hidden-text {
  color: #000;
  user-select: text;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
  user-select: text;
}

/* ── Legal Pages ───────────────────────────────── */

.legal {
  padding: 80px 0;
}

.legal h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.legal-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.legal-body {
  max-width: 600px;
}

.legal-body p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.legal-body h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text);
  margin: 40px 0 20px;
}

.legal-body ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.legal-body ul li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  padding-left: 16px;
  position: relative;
}

.legal-body ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #444;
}

.legal-body a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-body a:hover {
  color: var(--text-muted);
}

.legal-body strong {
  color: var(--text);
}

/* ── Responsive ────────────────────────────────── */

@media (max-width: 700px) {
  .hero {
    flex-direction: column-reverse;
    padding: 60px 20px 60px;
    align-items: center;
    text-align: center;
  }

  .subtext { margin: 0 auto 44px; }

  .game-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .game-row-badges { flex-direction: row; }

  nav { gap: 20px; }
}
