/* Hero Section */
.background-image {
  width: 100%;
  height: 50vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("../img/20250904_1555_Colorful Blob Characters_remix_01k4a95vk8e4rb0b2hxw96h2g0.png");
}

.hero-section h1 {
  color: white;
  font-size: 48px;
  font-weight: 700;
  margin: 0;
}

/* Games Section */
.games {
  padding: 60px 15px;
  text-align: center;
}

.games-title {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 15px;
}

.games-text {
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 18px;
  line-height: 1.6;
}

/* Game Card */
.game-card {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 40px 20px;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.game-card:hover {
  transform: translateY(-8px);
}

.game-icon {
  width: 200px;
  margin-bottom: 20px;
}

.game-card h3 {
  font-weight: 700;
  margin-bottom: 15px;
}

.game-card p {
  font-size: 16px;
  margin-bottom: 20px;
}

.google-play-store-icon {
  width: 180px;
  transition: transform 0.3s;
}

.google-play-store-icon:hover {
  transform: scale(1.05);
}
