.page-index-hot-games-recommendation {
  padding-top: 10px; /* Small top padding for the first section */
  background-color: #F5F7FA;
  color: #333333;
  font-family: sans-serif;
}

.page-index-hot-games-recommendation__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0 40px;
  background-color: #100224; /* Dark background for hero */
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-index-hot-games-recommendation__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 20px;
}

.page-index-hot-games-recommendation__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-index-hot-games-recommendation__hero-content {
  max-width: 900px;
  padding: 0 20px;
  z-index: 1; /* Ensure content is above any potential background effects */
}

.page-index-hot-games-recommendation__hero-title {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.page-index-hot-games-recommendation__hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-index-hot-games-recommendation__hero-btn {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(229, 57, 53, 0.4);
}

.page-index-hot-games-recommendation__hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(229, 57, 53, 0.6);
}

.page-index-hot-games-recommendation__games-showcase,
.page-index-hot-games-recommendation__why-bongdalu,
.page-index-hot-games-recommendation__promotions-section,
.page-index-hot-games-recommendation__cta-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-index-hot-games-recommendation__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #E53935;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.page-index-hot-games-recommendation__section-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #333333;
}

.page-index-hot-games-recommendation__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
}

.page-index-hot-games-recommendation__game-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 400px; /* Minimum height for card */
}

.page-index-hot-games-recommendation__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index-hot-games-recommendation__game-card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-bottom: 1px solid #E0E0E0;
}

.page-index-hot-games-recommendation__game-card-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 15px 20px 10px;
  line-height: 1.3;
}

.page-index-hot-games-recommendation__game-card-title a {
  color: #E53935;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index-hot-games-recommendation__game-card-title a:hover {
  color: #FF5A4F;
}

.page-index-hot-games-recommendation__game-card-description {
  font-size: 0.95rem;
  color: #333333;
  line-height: 1.5;
  margin: 0 20px 20px;
  flex-grow: 1;
}

.page-index-hot-games-recommendation__game-card-btn {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  margin: 0 20px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-hot-games-recommendation__game-card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(229, 57, 53, 0.3);
}

.page-index-hot-games-recommendation__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-index-hot-games-recommendation__feature-item {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-index-hot-games-recommendation__feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #E53935;
  margin-bottom: 15px;
}

.page-index-hot-games-recommendation__feature-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #333333;
}

.page-index-hot-games-recommendation__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-index-hot-games-recommendation__promo-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-hot-games-recommendation__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index-hot-games-recommendation__promo-image {
  width: 100%;
  height: 220px; /* Fixed height for promo images */
  object-fit: cover;
  border-bottom: 1px solid #E0E0E0;
}

.page-index-hot-games-recommendation__promo-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 15px 20px 10px;
  color: #E53935;
}

.page-index-hot-games-recommendation__promo-description {
  font-size: 0.95rem;
  color: #333333;
  line-height: 1.5;
  margin: 0 20px 20px;
}

.page-index-hot-games-recommendation__promo-btn {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  margin: 0 20px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-hot-games-recommendation__promo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(229, 57, 53, 0.3);
}

.page-index-hot-games-recommendation__cta-section {
  background-color: #100224; /* Dark background for CTA */
  color: #FFFFFF;
  padding: 80px 20px;
  margin-bottom: 0; /* No margin at the bottom */
}

.page-index-hot-games-recommendation__cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-index-hot-games-recommendation__cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.page-index-hot-games-recommendation__cta-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.9;
}

.page-index-hot-games-recommendation__cta-btn {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(229, 57, 53, 0.4);
}

.page-index-hot-games-recommendation__cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(229, 57, 53, 0.6);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-index-hot-games-recommendation__hero-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .page-index-hot-games-recommendation__hero-description,
  .page-index-hot-games-recommendation__section-description,
  .page-index-hot-games-recommendation__cta-description {
    font-size: 1rem;
  }

  .page-index-hot-games-recommendation__section-title,
  .page-index-hot-games-recommendation__cta-title {
    font-size: 2rem;
  }

  .page-index-hot-games-recommendation__games-showcase,
  .page-index-hot-games-recommendation__why-bongdalu,
  .page-index-hot-games-recommendation__promotions-section,
  .page-index-hot-games-recommendation__cta-section {
    padding: 40px 15px;
  }

  .page-index-hot-games-recommendation__game-grid,
  .page-index-hot-games-recommendation__features-grid,
  .page-index-hot-games-recommendation__promo-grid {
    grid-template-columns: 1fr;
  }

  /* Ensure images in content areas are responsive and don't overflow */
  .page-index-hot-games-recommendation img {
    max-width: 100%;
    height: auto;
  }

  .page-index-hot-games-recommendation__game-card-image,
  .page-index-hot-games-recommendation__promo-image {
    height: 180px; /* Adjust height for smaller screens */
  }

  .page-index-hot-games-recommendation__game-card,
  .page-index-hot-games-recommendation__promo-card {
    min-height: auto; /* Allow height to adjust */
  }
}

@media (max-width: 480px) {
  .page-index-hot-games-recommendation__hero-title {
    font-size: clamp(1.5rem, 10vw, 2rem);
  }

  .page-index-hot-games-recommendation__hero-btn,
  .page-index-hot-games-recommendation__cta-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .page-index-hot-games-recommendation__section-title,
  .page-index-hot-games-recommendation__cta-title {
    font-size: 1.8rem;
  }

  .page-index-hot-games-recommendation__game-card-title,
  .page-index-hot-games-recommendation__feature-title,
  .page-index-hot-games-recommendation__promo-title {
    font-size: 1.2rem;
  }
}