:root {
  color-scheme: dark;
  --ink: #f4f0e8;
  --muted: #a8a49c;
  --paper: #171817;
  --panel: #20221f;
  --line: #3b3d38;
  --accent: #d4ff5f;
  --accent-dark: #a9d63d;
  --warm: #ffbd73;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); line-height: 1.6; }
a { color: inherit; }
.site-header, .site-footer { max-width: 1180px; margin: 0 auto; padding: 1.35rem 2rem; }
.site-header { display: flex; justify-content: space-between; align-items: center; gap: 2rem; border-bottom: 1px solid var(--line); }
.brand { display: inline-flex; align-items: center; gap: .7rem; font-weight: 700; text-decoration: none; letter-spacing: -.02em; }
.brand-mark { display: grid; place-items: center; width: 2.2rem; height: 2.2rem; background: var(--accent); color: #151713; font-size: .75rem; font-weight: 900; }
nav { display: flex; align-items: center; gap: 1.45rem; font-size: .9rem; }
nav a:not(.button), .text-link { color: var(--muted); text-decoration: none; }
nav a:not(.button):hover, .text-link:hover { color: var(--ink); }
.button { display: inline-block; padding: .85rem 1.2rem; background: var(--accent); color: #151713; font-weight: 800; text-decoration: none; border: 1px solid var(--accent); }
.button:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.button-small { padding: .55rem .8rem; font-size: .85rem; }
.hero, .section, .cta-section { max-width: 1180px; margin: 0 auto; padding: 7rem 2rem; }
.hero { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 5rem; min-height: 650px; }
.eyebrow { margin: 0 0 1rem; color: var(--accent); font-size: .72rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { letter-spacing: -.055em; line-height: 1.02; }
h1 { max-width: 680px; margin-bottom: 1.5rem; font-size: clamp(3.4rem, 7vw, 6.6rem); }
h2 { margin-bottom: 1.5rem; font-size: clamp(2.4rem, 5vw, 4.5rem); }
h3 { margin-bottom: .35rem; font-size: 1.25rem; }
.hero-text { max-width: 480px; color: var(--muted); font-size: 1.2rem; }
.hero-actions { display: flex; align-items: center; gap: 1.5rem; margin-top: 2.4rem; }
.text-link { font-weight: 700; }
.hero-panel { padding: 1.2rem; background: var(--panel); border: 1px solid var(--line); box-shadow: 18px 18px 0 rgba(212, 255, 95, .12); }
.panel-topline { padding: .4rem .3rem 1.3rem; color: var(--muted); font-size: .8rem; }
.status-dot { display: inline-block; width: .55rem; height: .55rem; margin-right: .5rem; border-radius: 50%; background: var(--accent); box-shadow: 0 0 14px var(--accent); }
.world-card { display: flex; justify-content: space-between; align-items: end; min-height: 220px; padding: 1.5rem; background: linear-gradient(145deg, #4e5b38, #263329 60%, #20221f); }
.world-card strong { display: block; font-size: 1.7rem; }
.world-icon { color: var(--warm); font-size: 3rem; }
.card-label { display: block; margin-bottom: .4rem; color: var(--muted); font-size: .65rem; letter-spacing: .14em; }
.panel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 1px; background: var(--line); }
.panel-grid > div { padding: 1rem; background: var(--panel); }
.panel-grid strong { display: block; }
.section { border-top: 1px solid var(--line); }
.section-heading { max-width: 720px; margin-bottom: 3rem; }
.game-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.game-card { min-height: 240px; padding: 1.6rem; background: var(--panel); }
.game-card p, .feature-list p, .cta-section > p:not(.eyebrow) { color: var(--muted); }
.game-number { display: block; margin-bottom: 5rem; color: var(--warm); font-size: .75rem; font-weight: 800; }
.section-split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.feature-list p { padding: 1rem 0 1rem 1.5rem; border-top: 1px solid var(--line); }
.feature-list strong { color: var(--ink); }
.cta-section { text-align: center; border-top: 1px solid var(--line); }
.cta-section h2 { max-width: 720px; margin-left: auto; margin-right: auto; }
.cta-section > p:not(.eyebrow) { max-width: 500px; margin: 0 auto 2rem; }
.site-footer { display: flex; justify-content: space-between; color: var(--muted); font-size: .8rem; border-top: 1px solid var(--line); }

@media (max-width: 760px) {
  .site-header { align-items: flex-start; }
  nav { flex-wrap: wrap; justify-content: flex-end; gap: .7rem 1rem; }
  nav a:not(.button) { display: none; }
  .hero, .section, .cta-section { padding-top: 4.5rem; padding-bottom: 4.5rem; }
  .hero, .section-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero { min-height: auto; }
  .game-grid { grid-template-columns: 1fr; }
  .game-card { min-height: 170px; }
  .game-number { margin-bottom: 2.5rem; }
  .site-footer { padding-left: 2rem; padding-right: 2rem; }
}
