.page-index-hot-games-recommendation {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A192F; /* Primary dark background */
  line-height: 1.6;
}

.page-index-hot-games-recommendation__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #0A192F 0%, #1A2B42 100%); /* Dark gradient */
  color: #FFFFFF;
  gap: 30px;
}

.page-index-hot-games-recommendation__hero-content {
  max-width: 800px;
}

.page-index-hot-games-recommendation__hero-title {
  font-size: 2.8em;
  color: #FFD700; /* Auxiliary gold for titles */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-index-hot-games-recommendation__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-index-hot-games-recommendation__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark text on gold */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-index-hot-games-recommendation__hero-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-index-hot-games-recommendation__hero-image-wrapper {
  width: 100%;
  max-width: 900px;
  margin-top: 40px;
}

.page-index-hot-games-recommendation__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-index-hot-games-recommendation__section-title {
  font-size: 2.2em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  padding-top: 40px;
}

.page-index-hot-games-recommendation__section-description {
  font-size: 1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #B0B0B0;
}

.page-index-hot-games-recommendation__why-choose {
  padding: 60px 20px;
  background-color: #0A192F;
}

.page-index-hot-games-recommendation__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-index-hot-games-recommendation__feature-item {
  background-color: #1A2B42; /* Slightly lighter dark background */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-index-hot-games-recommendation__feature-item:hover {
  transform: translateY(-5px);
}

.page-index-hot-games-recommendation__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-index-hot-games-recommendation__feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-index-hot-games-recommendation__feature-text {
  font-size: 0.95em;
  color: #C0C0C0;
}

.page-index-hot-games-recommendation__game-categories {
  padding: 60px 20px;
  background-color: #0A192F;
}

.page-index-hot-games-recommendation__category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-index-hot-games-recommendation__game-card {
  background-color: #1A2B42;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  color: #E0E0E0;
}

.page-index-hot-games-recommendation__game-card:hover {
  transform: translateY(-5px);
}

.page-index-hot-games-recommendation__game-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
}

.page-index-hot-games-recommendation__game-card-title {
  font-size: 1.6em;
  color: #FFD700;
  padding: 20px 20px 10px 20px;
}

.page-index-hot-games-recommendation__game-card-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-index-hot-games-recommendation__game-card-title a:hover {
  text-decoration: underline;
}

.page-index-hot-games-recommendation__game-card-text {
  font-size: 0.95em;
  padding: 0 20px 20px 20px;
  flex-grow: 1;
}

.page-index-hot-games-recommendation__game-card-button {
  display: block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 12px 20px;
  margin: 0 20px 20px 20px;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-index-hot-games-recommendation__game-card-button:hover {
  background-color: #e6c200;
}

.page-index-hot-games-recommendation__how-to-start {
  padding: 60px 20px;
  background-color: #1A2B42;
  color: #E0E0E0;
}

.page-index-hot-games-recommendation__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 50px auto;
}

.page-index-hot-games-recommendation__step-item {
  background-color: #0A192F;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-hot-games-recommendation__step-number {
  font-size: 2.5em;
  color: #FFD700;
  font-weight: bold;
  margin-bottom: 15px;
}

.page-index-hot-games-recommendation__step-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-index-hot-games-recommendation__step-text {
  font-size: 0.95em;
  color: #C0C0C0;
}

.page-index-hot-games-recommendation__cta-bottom {
  text-align: center;
  margin-top: 40px;
}

.page-index-hot-games-recommendation__cta-text {
  font-size: 1.2em;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.page-index-hot-games-recommendation__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-index-hot-games-recommendation__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-index-hot-games-recommendation__promotions {
  padding: 60px 20px;
  background-color: #0A192F;
}

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

.page-index-hot-games-recommendation__promo-card {
  background-color: #1A2B42;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease;
}

.page-index-hot-games-recommendation__promo-card:hover {
  transform: translateY(-5px);
}

.page-index-hot-games-recommendation__promo-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 20px;
  border-bottom: 3px solid #FFD700;
}

.page-index-hot-games-recommendation__promo-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
  padding: 0 20px;
}

.page-index-hot-games-recommendation__promo-text {
  font-size: 0.95em;
  color: #C0C0C0;
  margin-bottom: 20px;
  padding: 0 20px;
}

.page-index-hot-games-recommendation__promo-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-index-hot-games-recommendation__promo-button:hover {
  background-color: #e6c200;
}

.page-index-hot-games-recommendation__responsible-gaming {
  padding: 60px 20px;
  background-color: #1A2B42;
  text-align: center;
  color: #E0E0E0;
}

.page-index-hot-games-recommendation__responsible-gaming-text {
  max-width: 900px;
  margin: 0 auto 20px auto;
  font-size: 1em;
  color: #C0C0C0;
}

.page-index-hot-games-recommendation__faq {
  padding: 60px 20px;
  background-color: #0A192F;
}

.page-index-hot-games-recommendation__faq-item {
  max-width: 900px;
  margin: 0 auto 25px auto;
  background-color: #1A2B42;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-hot-games-recommendation__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-index-hot-games-recommendation__faq-answer {
  font-size: 1em;
  color: #C0C0C0;
}

.page-index-hot-games-recommendation__final-cta {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFD700 0%, #e6c200 100%); /* Gold gradient */
  text-align: center;
  color: #0A192F; /* Dark text on gold background */
}

.page-index-hot-games-recommendation__final-cta-title {
  font-size: 2.5em;
  color: #0A192F;
  margin-bottom: 20px;
}

.page-index-hot-games-recommendation__final-cta-description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #333;
}

.page-index-hot-games-recommendation__final-cta-button {
  display: inline-block;
  background-color: #0A192F; /* Dark button on gold */
  color: #FFD700; /* Gold text on dark button */
  padding: 18px 40px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-index-hot-games-recommendation__final-cta-button:hover {
  background-color: #1A2B42;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-index-hot-games-recommendation__hero {
    flex-direction: column;
    padding: 40px 15px;
  }

  .page-index-hot-games-recommendation__hero-title {
    font-size: 2em;
  }

  .page-index-hot-games-recommendation__hero-description,
  .page-index-hot-games-recommendation__section-description,
  .page-index-hot-games-recommendation__cta-text,
  .page-index-hot-games-recommendation__final-cta-description {
    font-size: 0.95em;
  }

  .page-index-hot-games-recommendation__section-title {
    font-size: 1.8em;
  }

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

  .page-index-hot-games-recommendation__hero-image-wrapper {
    margin-top: 30px;
  }

  .page-index-hot-games-recommendation__game-card-title {
    font-size: 1.4em;
  }

  .page-index-hot-games-recommendation__promo-title {
    font-size: 1.3em;
  }

  .page-index-hot-games-recommendation__final-cta-title {
    font-size: 2em;
  }

  .page-index-hot-games-recommendation__hero-button,
  .page-index-hot-games-recommendation__cta-button,
  .page-index-hot-games-recommendation__final-cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-index-hot-games-recommendation__hero-title {
    font-size: 1.7em;
  }

  .page-index-hot-games-recommendation__section-title {
    font-size: 1.6em;
  }

  .page-index-hot-games-recommendation__final-cta-title {
    font-size: 1.8em;
  }

  .page-index-hot-games-recommendation__hero-description,
  .page-index-hot-games-recommendation__section-description,
  .page-index-hot-games-recommendation__feature-text,
  .page-index-hot-games-recommendation__game-card-text,
  .page-index-hot-games-recommendation__step-text,
  .page-index-hot-games-recommendation__promo-text,
  .page-index-hot-games-recommendation__responsible-gaming-text,
  .page-index-hot-games-recommendation__faq-answer,
  .page-index-hot-games-recommendation__final-cta-description {
    font-size: 0.9em;
  }

  .page-index-hot-games-recommendation__hero-button,
  .page-index-hot-games-recommendation__cta-button,
  .page-index-hot-games-recommendation__final-cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}