:root {
  --bg: #191b2a;
  --panel: #232640;
  --cell: #2c3052;
  --text: #f2f3fa;
  --dim: #9aa0c3;
  --accent: #ffd166;
  --mint: #6fe3b4;
  --sky: #6fc3ff;
  --lav: #b39dff;
  --coral: #ff8e8e;
  --pink: #ff9ed2;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Nunito', -apple-system, 'Segoe UI', sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

.wrap { max-width: 760px; margin: 0 auto; padding: 0 24px; }

header.site {
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 900;
  letter-spacing: 3px;
  font-size: 18px;
  color: var(--text);
  text-decoration: none;
}
.brand span { color: var(--mint); }

nav a {
  color: var(--dim);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  margin-left: 20px;
}
nav a:hover { color: var(--text); }

.hero { text-align: center; padding: 70px 0 40px; }

.hero h1 {
  font-size: 52px;
  font-weight: 900;
  letter-spacing: 6px;
}

.hero .tag {
  color: var(--mint);
  letter-spacing: 4px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  margin-top: 10px;
}

.blocks {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 34px 0;
}
.block {
  width: 34px; height: 34px; border-radius: 9px;
}

.card {
  background: var(--panel);
  border-radius: 22px;
  padding: 36px;
  margin: 30px 0;
}

.game {
  display: flex;
  gap: 26px;
  align-items: center;
  flex-wrap: wrap;
}
.game img.icon {
  width: 110px; height: 110px; border-radius: 26px;
  flex-shrink: 0;
}
.game h2 { font-size: 28px; font-weight: 900; }
.game .sub { color: var(--mint); font-weight: 800; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; }
.game p { color: var(--dim); margin-top: 10px; font-size: 15px; }

.badge {
  display: inline-block;
  margin-top: 16px;
  background: var(--cell);
  color: var(--dim);
  font-weight: 800;
  font-size: 13px;
  padding: 10px 18px;
  border-radius: 999px;
}

ul.features { list-style: none; margin-top: 18px; }
ul.features li {
  color: var(--dim);
  font-size: 15px;
  padding: 6px 0 6px 30px;
  position: relative;
}
ul.features li::before {
  content: '';
  position: absolute; left: 0; top: 12px;
  width: 14px; height: 14px; border-radius: 4px;
}
ul.features li:nth-child(1)::before { background: var(--mint); }
ul.features li:nth-child(2)::before { background: var(--sky); }
ul.features li:nth-child(3)::before { background: var(--accent); }
ul.features li:nth-child(4)::before { background: var(--lav); }
ul.features li:nth-child(5)::before { background: var(--coral); }

article { padding: 40px 0 80px; }
article h1 { font-size: 32px; font-weight: 900; margin-bottom: 6px; }
article .updated { color: var(--dim); font-size: 13px; margin-bottom: 30px; }
article h2 { font-size: 20px; font-weight: 800; margin: 30px 0 8px; }
article p, article li { color: var(--dim); font-size: 15px; }
article ul { padding-left: 22px; margin: 8px 0; }
article a { color: var(--sky); }
article strong { color: var(--text); }

footer.site {
  border-top: 1px solid var(--cell);
  padding: 26px 0 46px;
  color: var(--dim);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
footer.site a { color: var(--dim); text-decoration: none; margin-right: 16px; }
footer.site a:hover { color: var(--text); }

@media (max-width: 560px) {
  .hero h1 { font-size: 36px; letter-spacing: 4px; }
  .game { flex-direction: column; text-align: center; }
  ul.features li { text-align: left; }
}
