* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f4f7fb;
  color: #1f2937;
}

.page {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 20px 64px;
}

.hero {
  margin-bottom: 28px;
}

.hero h1 {
  margin: 0 0 8px;
  font-size: 2.5rem;
}

.subtitle {
  margin: 0;
  color: #4b5563;
}

.games-panel {
  background: #ffffff;
  border: 1px solid #dbe3ee;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.panel-header,
.game-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
}

.panel-header {
  background: #eaf0f8;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
  color: #334155;
}

.game-row + .game-row {
  border-top: 1px solid #e5e7eb;
}

.game-name {
  font-size: 1rem;
}

.play-link {
  display: inline-block;
  text-decoration: none;
  background: #2563eb;
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 700;
}

.play-link:hover {
  background: #1d4ed8;
}

@media (max-width: 640px) {
  .panel-header,
  .game-row {
    grid-template-columns: 1fr;
  }

  .play-link {
    width: fit-content;
  }
}
