* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #080808;
  color: #f5f5f5;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.nav {
  height: 72px;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #202020;
  position: sticky;
  top: 0;
  background: rgba(8,8,8,.9);
  backdrop-filter: blur(12px);
  z-index: 10;
}
.logo { font-weight: 900; letter-spacing: .18em; }
nav { display: flex; gap: 28px; color: #aaa; font-size: 14px; }
nav a:hover, footer a:hover { color: #fff; }
.hero {
  min-height: 78vh;
  padding: 12vh 8% 10vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: radial-gradient(circle at 80% 30%, #222 0, #080808 42%);
}
.eyebrow { color: #777; font-size: 12px; font-weight: 800; letter-spacing: .2em; }
h1 { font-size: clamp(42px, 8vw, 96px); line-height: .95; margin: 18px 0; max-width: 950px; letter-spacing: -.05em; }
h2 { font-size: clamp(36px, 6vw, 64px); line-height: 1; margin: 10px 0 30px; letter-spacing: -.04em; }
h3 { font-size: 28px; margin: 8px 0; }
.lead { max-width: 620px; color: #aaa; font-size: 18px; }
.buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.button {
  display: inline-block;
  padding: 13px 20px;
  background: #fff;
  color: #000;
  border-radius: 5px;
  font-weight: 800;
}
.button.ghost { background: transparent; color: #fff; border: 1px solid #333; }
.section { padding: 100px 8%; border-top: 1px solid #181818; }
.game-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 45px;
  padding: 25px;
  border: 1px solid #222;
  background: #0d0d0d;
}
.game-art {
  min-height: 360px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #1b1b1b, #080808);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: .12em;
  color: #555;
}
.tag, .news-grid span { color: #777; font-size: 11px; font-weight: 800; letter-spacing: .16em; }
.text-link { font-weight: 800; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.split > p { color: #aaa; font-size: 20px; max-width: 600px; }
.news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.news-grid article { padding: 28px; border: 1px solid #222; background: #0d0d0d; }
.news-grid p { color: #999; }
.support { text-align: center; }
.support p { color: #999; max-width: 600px; margin: auto; }
.support .buttons { justify-content: center; }
footer {
  padding: 30px 8%;
  border-top: 1px solid #202020;
  display: flex;
  justify-content: space-between;
  color: #666;
  font-size: 12px;
}
@media (max-width: 700px) {
  nav { gap: 12px; font-size: 12px; }
  .game-card, .split, .news-grid { grid-template-columns: 1fr; }
  .game-art { min-height: 240px; }
  .section { padding: 70px 6%; }
  footer { flex-direction: column; gap: 10px; }
}
