:root {
  --bg0: #071018;
  --bg1: #0d1c2a;
  --ink: #e7f0f7;
  --muted: #8aa0b8;
  --accent: #2fd67b;
  --accent-2: #3ec7ff;
  --line: rgba(231, 240, 247, 0.12);
}

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

html,
body {
  min-height: 100%;
  background: var(--bg0);
  color: var(--ink);
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
}

body {
  position: relative;
  overflow-x: hidden;
  padding: 20px clamp(16px, 3vw, 40px) 48px;
}

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 55% at 12% -10%, rgba(47, 214, 123, 0.22), transparent 55%),
    radial-gradient(ellipse 70% 50% at 95% 10%, rgba(62, 199, 255, 0.16), transparent 50%),
    linear-gradient(165deg, var(--bg1) 0%, var(--bg0) 55%, #050b12 100%);
}

.atmosphere::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  opacity: 0.45;
  pointer-events: none;
}

.hero {
  max-width: 34rem;
  margin-top: 12px;
  margin-bottom: clamp(28px, 5vh, 48px);
  animation: rise 700ms ease-out both;
}

.kicker {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 14px;
}

.hero h1 {
  font-family: Orbitron, sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 7vw, 64px);
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin-bottom: 16px;
}

.lede {
  color: var(--muted);
  font-size: clamp(16px, 2.2vw, 18px);
  line-height: 1.55;
  max-width: 34ch;
}

.catalog {
  display: grid;
  gap: 14px;
  max-width: 720px;
  animation: rise 900ms 80ms ease-out both;
}

.game {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas:
    'badge title go'
    'badge desc go';
  gap: 4px 18px;
  align-items: center;
  padding: 18px 20px;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line);
  background: rgba(8, 18, 28, 0.45);
  backdrop-filter: blur(8px);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.game.live:hover {
  border-color: rgba(47, 214, 123, 0.55);
  background: rgba(12, 28, 40, 0.7);
  transform: translateY(-2px);
}

.game.soon {
  opacity: 0.55;
  cursor: default;
}

.badge {
  grid-area: badge;
  font-family: Orbitron, sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 8px;
  border: 1px solid var(--line);
  color: var(--muted);
  align-self: start;
}

.game.live .badge {
  color: #04140c;
  background: var(--accent);
  border-color: var(--accent);
}

.game strong {
  grid-area: title;
  font-family: Orbitron, sans-serif;
  font-size: 18px;
  letter-spacing: 0.04em;
}

.desc {
  grid-area: desc;
  color: var(--muted);
  font-size: 14px;
}

.go {
  grid-area: go;
  font-family: Orbitron, sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--accent);
  white-space: nowrap;
}

.foot {
  margin-top: clamp(48px, 10vh, 88px);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  color: var(--muted);
  font-size: 13px;
  animation: rise 1s 120ms ease-out both;
}

.foot a {
  color: var(--ink);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 560px) {
  .game {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      'badge title'
      'badge desc'
      'go go';
  }

  .go {
    margin-top: 8px;
  }
}
