* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #101018;
  color: #ffffff;
  line-height: 1.6;
}

.hero {
  min-height: 90vh;
  padding: 60px 20px;
  text-align: center;
  background: radial-gradient(circle at top, #2a2a45, #101018 65%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo {
  width: 160px;
  max-width: 70%;
  margin-bottom: 25px;
}

h1 {
  font-size: 3rem;
  margin: 10px 0;
}

.tagline {
  font-size: 1.2rem;
  color: #d6d6e8;
  margin-bottom: 30px;
}

.button {
  display: inline-block;
  background: #ffcc33;
  color: #111;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
}

.button:hover {
  background: #ffe066;
}

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 70px 20px;
}

.section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 35px;
}

.game-card {
  background: #1b1b2a;
  border: 1px solid #33334d;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.game-info h3 {
  font-size: 2rem;
  margin-top: 0;
}

.genre {
  color: #ffcc33;
  font-weight: bold;
}

.coming-soon {
  display: inline-block;
  margin-top: 15px;
  background: #292940;
  border: 1px solid #ffcc33;
  color: #ffcc33;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: bold;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid #33334d;
  background: #1b1b2a;
}

.ball-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.ball-list span {
  background: #1b1b2a;
  border: 1px solid #33334d;
  padding: 10px 14px;
  border-radius: 999px;
}

.about,
.contact {
  text-align: center;
}

a {
  color: #ffcc33;
}

footer {
  text-align: center;
  padding: 35px 20px;
  background: #0a0a10;
  color: #ccccdd;
}

footer a {
  display: inline-block;
  margin-top: 8px;
}

@media (max-width: 800px) {
  h1 {
    font-size: 2.2rem;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 50px 18px;
  }
}