body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: radial-gradient(circle at top, #101b3a 0%, #050816 55%, #03050f 100%);
  color: white;
}

.menu-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  box-sizing: border-box;
}

.menu-shell {
  width: 100%;
  max-width: 1200px;
}

.menu-head {
  text-align: center;
  margin-bottom: 34px;
}

.menu-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #94a3d8;
  margin-bottom: 10px;
}

.menu-head h1 {
  margin: 0 0 12px;
  font-size: 48px;
  font-weight: 900;
}

.menu-head p {
  margin: 0;
  color: #b6c2e4;
  font-size: 18px;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 24px;
}

.game-card {
  position: relative;
  display: block;
  text-decoration: none;
  color: white;
  padding: 26px;
  border-radius: 24px;
  border: 1px solid rgba(125, 149, 255, 0.18);
  background: linear-gradient(180deg, rgba(14, 22, 48, 0.96) 0%, rgba(8, 14, 30, 0.98) 100%);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.game-card:hover {
  transform: translateY(-6px);
  border-color: rgba(96, 165, 250, 0.6);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.42);
}

.game-card.hotzone {
  background:
    linear-gradient(180deg, rgba(10, 21, 48, 0.96) 0%, rgba(7, 13, 28, 0.98) 100%),
    linear-gradient(135deg, #1d4ed8, #06b6d4);
}

.game-card.ddf {
  background:
    linear-gradient(180deg, rgba(26, 14, 36, 0.96) 0%, rgba(13, 8, 22, 0.98) 100%),
    linear-gradient(135deg, #7c3aed, #ef4444);
}

.game-card.quizduell {
  background:
    linear-gradient(180deg, rgba(10, 19, 44, 0.96) 0%, rgba(7, 13, 28, 0.98) 100%),
    linear-gradient(135deg, #0ea5e9, #2563eb);
}

.game-badge {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 18px;
}

.game-title {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 12px;
}

.game-desc {
  color: #d5def7;
  font-size: 17px;
  line-height: 1.5;
  min-height: 78px;
  margin-bottom: 22px;
}

.game-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 800;
}

@media (max-width: 980px) {
  .game-grid {
    grid-template-columns: 1fr;
  }

  .menu-head h1 {
    font-size: 38px;
  }
}