* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #241d3a, #120e24);
  font-family: Georgia, 'Times New Roman', serif;
  color: #ece7f6;
}

main {
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 32rem;
}

h1 {
  font-family: 'Cinzel', Georgia, serif;
  font-weight: 900;
  font-size: clamp(2rem, 6vw, 3rem);
  margin: 0 0 0.5rem;
  color: #f4ecd8;
  letter-spacing: 0.03em;
}

.subtitle {
  color: #c3bbdc;
  margin: 0 0 2.5rem;
  font-size: 1.05rem;
}

.game-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.game-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.1rem 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid #5a4a8a;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.game-card:hover,
.game-card:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: #8f7cd6;
  transform: translateY(-2px);
}

.game-title {
  font-family: 'Cinzel', Georgia, serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #f4ecd8;
}

.game-desc {
  font-size: 0.9rem;
  color: #b3a9cc;
}
