body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: linear-gradient(135deg, #181c2b 60%, #232946 100%);
  font-family: 'Orbitron', 'Segoe UI', Arial, sans-serif;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arcade-container {
  background: rgba(24, 28, 43, 0.95);
  border-radius: 24px;
  box-shadow: 0 0 32px 8px #6c63ff44;
  padding: 40px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 340px;
}

.arcade-logo {
  width: 90px;
  height: 90px;
  margin-bottom: 18px;
  filter: drop-shadow(0 0 12px #6c63ffcc);
}

.arcade-title {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: #b8baff;
  text-shadow: 0 0 12px #6c63ff, 0 0 24px #fff2;
  margin-bottom: 36px;
}

.games-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.game-card {
  background: #232946;
  border: 2px solid #6c63ff;
  border-radius: 16px;
  padding: 28px 0;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: #e0e0ff;
  cursor: pointer;
  box-shadow: 0 0 16px 2px #6c63ff33;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s, color 0.15s;
  user-select: none;
}

.game-card:hover {
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 0 32px 6px #6c63ff99;
  border-color: #fff;
  color: #ffb347;
}

@media (max-width: 500px) {
  .arcade-container {
    min-width: unset;
    width: 98vw;
    padding: 18px 4vw 24px 4vw;
    margin: 12px;
  }
  .arcade-title {
    font-size: 1.3rem;
  }
  .game-card {
    font-size: 1rem;
    padding: 18px 0;
  }
} 