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

body {
  font-family: system-ui, -apple-system, sans-serif;
  background: #0f0f0f;
  color: #f0f0f0;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 48px 20px 60px;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.logo {
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
}

.games {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.game-card {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 5.5rem;
  padding: 18px 20px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s;
}

a.game-card:hover { border-color: #444; }

.game-card--soon {
  border-style: dashed;
  border-color: #333;
  opacity: 0.65;
  cursor: default;
  user-select: none;
}

.game-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 2rem;
  text-align: center;
  line-height: 1;
}

.game-card div {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.game-card strong {
  font-size: 0.95rem;
  color: #fff;
}

.game-card span {
  font-size: 0.8rem;
  color: #666;
}

.game-card--soon strong {
  color: #888;
}

.game-card--soon span {
  color: #555;
}
