/* Reset some defaults */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg, #1f1c2c, #928dab);
  color: #f0f0f0;
  font-family: 'Segoe UI', sans-serif;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.container {
  background-color: rgba(0, 0, 0, 0.65);
  padding: 40px 60px;
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  text-align: center;
  max-width: 500px;
  width: 100%;
}

h1 {
  font-size: 3rem;
  margin-bottom: 40px;
  color: #00d4ff;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.game-links {
  list-style: none;
}

.game-links li {
  margin: 20px 0;
}

.game-links a {
  display: inline-block;
  text-decoration: none;
  font-size: 1.2rem;
  color: #fff;
  background: linear-gradient(135deg, #00bfff, #0077ff);
  padding: 12px 24px;
  border-radius: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

.game-links a:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.6);
}
