:root {
  --bg: #000;
  --panel: #0d0d0d;
  --line: #222;
  --text: #fff;
  --muted: #9b9b9b;
  --red: #e10600;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; background: var(--bg); color: var(--text); }
body {
  font-family: Inter, "PingFang SC", "Noto Sans SC", sans-serif;
  font-size: 16px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, .brand, .kicker, .badge, .metrics b, .steps span {
  font-family: "Barlow Condensed", Inter, "PingFang SC", sans-serif;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 6vw;
  background: rgba(0,0,0,.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 20px;
}
.nav nav {
  display: flex;
  gap: 32px;
  color: #cfcfcf;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nav nav a:hover { color: #fff; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.lang { display: flex; border: 1px solid var(--line); }
.lang button {
  background: transparent;
  color: var(--muted);
  border: 0;
  padding: 8px 12px;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}
.lang button.active { background: #fff; color: #000; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 13px;
  font-family: "Barlow Condensed", Inter, sans-serif;
}
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: #ff1a12; }
.btn-outline { border: 1px solid #fff; }
.btn-outline:hover { background: #fff; color: #000; }
.btn-ghost { border: 1px solid #444; color: #fff; }
.btn-ghost:hover { border-color: #fff; }

.hero {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
  padding: 72px 6vw 64px;
  min-height: calc(100vh - 72px);
}
.kicker {
  color: var(--red);
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 13px;
  margin: 0 0 14px;
}
h1 {
  font-size: clamp(48px, 7.2vw, 92px);
  line-height: .92;
  margin: 0 0 22px;
  letter-spacing: .01em;
  text-transform: uppercase;
  font-weight: 800;
}
.lead, .muted { color: var(--muted); line-height: 1.75; max-width: 640px; }
.hero-actions { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
.hero-card {
  position: relative;
  display: block;
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid var(--line);
}
.hero-card img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.hero-card-meta {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,.85));
  display: flex;
  justify-content: space-between;
  align-items: end;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-card-meta span { color: var(--red); font-weight: 800; font-size: 13px; }
.hero-card-meta strong { font-size: 22px; }

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
}
.metrics div { padding: 32px 6vw; border-right: 1px solid var(--line); }
.metrics div:first-child { padding-left: 6vw; }
.metrics div:last-child { border-right: 0; }
.metrics b {
  display: block;
  font-size: 28px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.metrics span { color: var(--muted); font-size: 14px; }

.about, .block, .cta, footer { padding: 88px 6vw; }
.about {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 64px;
  align-items: start;
}
.about-right p { color: var(--muted); line-height: 1.85; font-size: 18px; }
h2 {
  font-size: clamp(36px, 4.4vw, 56px);
  letter-spacing: .02em;
  margin: 8px 0 0;
  text-transform: uppercase;
  font-weight: 800;
  line-height: .95;
}
.block-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
  align-items: end;
}
.games {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 16px;
}
.game { background: var(--panel); border: 1px solid var(--line); }
.game-visual { background: #080808; overflow: hidden; }
.game-visual img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.game-copy { padding: 22px; }
.game-copy h3 {
  margin: 8px 0 10px;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.game-copy p { color: var(--muted); line-height: 1.65; margin: 0; }
.badge {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
}
.badge.ghost { color: var(--muted); }
.dark { background: #070707; }

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.steps span {
  color: var(--red);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: .12em;
}
.steps h3 {
  margin: 12px 0 10px;
  font-size: 28px;
  text-transform: uppercase;
}
.steps p { color: var(--muted); line-height: 1.7; margin: 0; }

.cta {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
  border-top: 1px solid var(--line);
}
.cta-actions { display: flex; flex-direction: column; gap: 10px; min-width: 280px; }

footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.foot-brand { display: flex; gap: 12px; align-items: flex-start; }
.foot-brand strong {
  display: block;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.foot-brand p { margin: 4px 0 0; }
.foot-links { display: flex; gap: 22px; justify-content: flex-end; align-items: center; }
.legal { grid-column: 1 / -1; margin: 8px 0 0; }

@media (max-width: 980px) {
  .nav nav { display: none; }
  .hero, .about, .block-head, .games, .steps, .cta, footer, .metrics {
    grid-template-columns: 1fr;
    display: grid;
  }
  .hero { min-height: auto; padding-top: 48px; }
  .metrics div { border-right: 0; border-bottom: 1px solid var(--line); padding: 24px 6vw; }
  .foot-links { justify-content: flex-start; }
}
