/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: Verdana;
}
body {
  margin: 0;
  background: #080014;
  color: white;
  font-family: Arial, sans-serif;
  text-align: center;
}

.hero {
  min-height: 100vh;
  padding: 40px 20px;
  background: linear-gradient(135deg, #09001f, #240046, #ff006e);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: inset 0 0 80px #000;
}

h1 {
  font-size: 55px;
  color: #00fff7;
  text-shadow: 0 0 10px #00fff7, 0 0 25px #ff00ff;
  margin-bottom: 10px;
}

.hero p {
  font-size: 20px;
  color: #f5d9ff;
}

.play-button {
  margin-top: 25px;
  background: #ff006e;
  color: white;
  padding: 18px 30px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 20px #ff006e;
}

.play-button:hover {
  background: #00fff7;
  color: black;
  box-shadow: 0 0 25px #00fff7;
}

.games {
  padding: 40px 20px;
}

.games h2 {
  font-size: 35px;
  color: #ffcc00;
}

.game-card {
  background: #150026;
  border: 2px solid #ff00ff;
  border-radius: 20px;
  padding: 25px;
  margin: 25px auto;
  max-width: 350px;
  box-shadow: 0 0 20px #7b2cff;
}

.game-card h3 {
  color: #00fff7;
}

button {
  background: #ffcc00;
  color: black;
  border: none;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: bold;
}