:root {
  --bg: #0c0a12;
  --card: #17141f;
  --line: #2c2938;
  --text: #f6f1e8;
  --muted: #9a93a8;
  --gold: #ffd24a;
  --red: #ff3b4e;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 90, 120, 0.2), transparent 38%),
    radial-gradient(circle at 8% 70%, rgba(90, 140, 255, 0.12), transparent 42%),
    var(--bg);
  color: var(--text);
  font-family: Nunito, sans-serif;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); }
.wrap { width: min(980px, calc(100% - 36px)); margin: 0 auto; }

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 10px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 2px solid var(--gold);
  object-fit: cover;
  background: #111;
}
.brand b {
  font-family: "Lilita One", sans-serif;
  font-size: 20px;
  letter-spacing: 0.02em;
}
.nav { display: flex; flex-wrap: wrap; gap: 8px; }
.nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.28);
  border-radius: 999px;
  padding: 8px 12px;
}
.nav a:hover, .nav a.on { border-color: var(--gold); color: var(--gold); }

.hero { padding: 28px 0 18px; }
.eyebrow {
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 800;
  color: var(--gold);
}
h1 {
  font-family: "Lilita One", sans-serif;
  font-size: clamp(40px, 8vw, 68px);
  line-height: 0.94;
  margin: 10px 0 14px;
}
.lead {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
  max-width: 42ch;
  margin-bottom: 22px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  color: #2a1600;
  background: linear-gradient(180deg, #ffe08a, var(--gold));
  box-shadow: 0 6px 0 #7a4e00;
}
.cta:hover { filter: brightness(1.05); }
.cta.red {
  color: #fff;
  background: linear-gradient(180deg, #ff7a86, var(--red));
  box-shadow: 0 6px 0 #8a1020;
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.game-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  margin: 10px 0 36px;
  background: var(--card);
  border: 2px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 14px 0 #000;
}
.game-card:hover { border-color: var(--gold); }
.game-card img.cover {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}
.game-card .copy { padding: 22px 22px 20px; }
.game-card small { color: var(--gold); font-weight: 800; letter-spacing: 0.08em; }
.game-card h2 {
  font-family: "Lilita One", sans-serif;
  font-size: clamp(28px, 5vw, 40px);
  margin: 6px 0 8px;
}
.game-card p { color: var(--muted); margin-bottom: 16px; }

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 18px 0 28px;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
}
.card b {
  display: block;
  font-family: "Lilita One", sans-serif;
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 6px;
}
.card span { color: var(--muted); font-size: 14px; line-height: 1.4; }

.hero-row {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 20px;
  align-items: center;
}
.mascot {
  width: 180px;
  filter: drop-shadow(0 12px 0 #000);
}

.shot {
  width: 100%;
  border-radius: 22px;
  border: 3px solid var(--gold);
  box-shadow: 0 12px 0 #000;
  margin: 8px 0 22px;
  background: #111;
}

.links { display: flex; flex-wrap: wrap; gap: 10px; margin: 8px 0 28px; }
.links a {
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
}
.links a:hover { border-color: var(--gold); color: var(--gold); }

.foot {
  border-top: 1px solid var(--line);
  padding: 22px 0 40px;
  color: var(--muted);
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: space-between;
}
.foot a { color: var(--gold); }

@media (max-width: 760px) {
  .game-card, .hero-row { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr; }
  .mascot { width: 120px; margin: 0 auto; }
  .top { align-items: flex-start; flex-direction: column; }
}
