@import url("https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap");

.home-page {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  color: #f7f9ff;
  background-image:
    linear-gradient(rgba(12, 16, 33, 0.78), rgba(12, 16, 33, 0.88)),
    url("./gamepad-bg.svg");
  background-size: cover;
  background-position: center;
  font-family: Arial, sans-serif;
}

.home-content {
  width: min(92vw, 760px);
  text-align: center;
  padding: 1.5rem 1.2rem;
  background: rgba(8, 10, 28, 0.45);
  border: 2px solid rgba(143, 221, 255, 0.35);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.35);
}

.arcade-kicker {
  margin: 0 0 1rem;
  font-family: "Press Start 2P", "Courier New", monospace;
  font-size: clamp(0.55rem, 1.8vw, 0.85rem);
  letter-spacing: 0.08em;
  color: #6bf7ff;
  text-transform: uppercase;
}

.arcade-title {
  margin: 0;
  text-align: center;
  font-family: "Press Start 2P", "Courier New", monospace;
  font-size: clamp(1.2rem, 3vw, 2rem);
  letter-spacing: 0.08em;
  line-height: 1.4;
  color: #ffe16a;
  text-shadow:
    0 0 6px rgba(255, 166, 0, 0.95),
    0 0 18px rgba(255, 72, 0, 0.7),
    3px 3px 0 #1d102f;
}

.arcade-subtitle {
  margin: 1rem 0 1.5rem;
  color: #d6ebff;
  font-weight: 700;
}

.game-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.game-list a {
  display: inline-block;
  padding: 0.7rem 1.2rem;
  color: #ebf6ff;
  background: rgba(49, 88, 205, 0.55);
  border: 2px solid rgba(131, 215, 255, 0.8);
  border-radius: 999px;
  text-decoration: none;
  font-family: "Press Start 2P", "Courier New", monospace;
  font-size: clamp(0.62rem, 2vw, 0.78rem);
  line-height: 1.5;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.game-list a:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}
