.page-index-hot-games {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px);
}

.page-index-hot-games__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background-color: var(--secondary-color); /* Matches body background */
}

.page-index-hot-games__hero-content {
  max-width: 800px;
  margin-bottom: 40px;
}

.page-index-hot-games__hero-title {
  font-size: 3.2em;
  color: #000000;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-hot-games__hero-description {
  font-size: 1.2em;
  color: #555555;
  margin-bottom: 30px;
}

.page-index-hot-games__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-index-hot-games__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
}

.page-index-hot-games__button--register {
  background-color: #000000; /* Main color for register button */
  color: #FFFFFF; /* White text for register button */
}

.page-index-hot-games__button--register:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.page-index-hot-games__button--login {
  background-color: #FCBC45; /* Login button color */
  color: #000000;
}

.page-index-hot-games__button--login:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-index-hot-games__hero-image-container {
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
  border-radius: 12px;
}

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

.page-index-hot-games__featured-games-section,
.page-index-hot-games__promotions-section,
.page-index-hot-games__app-download-section,
.page-index-hot-games__why-choose-us-section,
.page-index-hot-games__faq-section,
.page-index-hot-games__cta-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
}

.page-index-hot-games__section-title {
  font-size: 2.8em;
  color: #000000;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-hot-games__section-subtitle {
  font-size: 1.1em;
  color: #666666;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-index-hot-games__game-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-index-hot-games__game-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-index-hot-games__game-card-title {
  font-size: 1.8em;
  color: #000000;
  margin: 20px 20px 10px;
}

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

.page-index-hot-games__game-card-title a:hover {
  color: #FCBC45;
}

.page-index-hot-games__game-card-description {
  font-size: 1em;
  color: #666666;
  padding: 0 20px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-index-hot-games__button--play {
  background-color: #FCBC45;
  color: #000000;
  padding: 12px 25px;
  font-size: 1em;
  margin: 0 20px 20px;
  align-self: flex-start;
}

.page-index-hot-games__button--play:hover {
  background-color: #e0a53b;
}

.page-index-hot-games__promotions-section,
.page-index-hot-games__app-download-section {
  display: flex;
  align-items: center;
  gap: 50px;
  text-align: left;
  background-color: #f8f8f8;
  border-radius: 12px;
  padding: 60px;
  margin-bottom: 40px;
}

.page-index-hot-games__promotions-section:nth-of-type(odd) {
  flex-direction: row-reverse;
}

.page-index-hot-games__promo-content,
.page-index-hot-games__app-content {
  flex: 1;
}

.page-index-hot-games__promo-image,
.page-index-hot-games__app-image {
  flex: 1;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  min-width: 200px; /* Ensure min dimension */
}

.page-index-hot-games__button--claim,
.page-index-hot-games__button--download {
  background-color: #000000;
  color: #FFFFFF;
  margin-top: 20px;
}

.page-index-hot-games__button--claim:hover,
.page-index-hot-games__button--download:hover {
  background-color: #333333;
}

.page-index-hot-games__link {
  display: block;
  margin-top: 15px;
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-index-hot-games__link:hover {
  color: #e0a53b;
}

.page-index-hot-games__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-hot-games__feature-item {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
}

.page-index-hot-games__feature-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 15px;
}

.page-index-hot-games__feature-description {
  font-size: 1em;
  color: #666666;
}

.page-index-hot-games__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-index-hot-games__faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-index-hot-games__faq-question {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
}

.page-index-hot-games__faq-answer {
  font-size: 1em;
  color: #555555;
}

.page-index-hot-games__link--more-faq {
  margin-top: 30px;
  display: inline-block;
}

.page-index-hot-games__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 80px 20px;
  border-radius: 12px;
}

.page-index-hot-games__cta-section .page-index-hot-games__section-title {
  color: #FFFFFF;
}

.page-index-hot-games__cta-section .page-index-hot-games__section-subtitle {
  color: #e0e0e0;
}

.page-index-hot-games__button--register-large {
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 40px;
  font-size: 1.3em;
  margin-top: 30px;
}

.page-index-hot-games__button--register-large:hover {
  background-color: #e0a53b;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-index-hot-games__hero-title {
    font-size: 2.8em;
  }
  .page-index-hot-games__section-title {
    font-size: 2.4em;
  }
  .page-index-hot-games__promotions-section,
  .page-index-hot-games__app-download-section {
    flex-direction: column;
    text-align: center;
  }
  .page-index-hot-games__promotions-section:nth-of-type(odd) {
    flex-direction: column;
  }
  .page-index-hot-games__promo-image,
  .page-index-hot-games__app-image {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-index-hot-games__hero-title {
    font-size: 2.2em;
  }
  .page-index-hot-games__hero-description {
    font-size: 1em;
  }
  .page-index-hot-games__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-hot-games__button {
    width: 80%;
    max-width: 300px;
  }
  .page-index-hot-games__section-title {
    font-size: 2em;
  }
  .page-index-hot-games__section-subtitle {
    font-size: 0.95em;
  }
  .page-index-hot-games__game-grid {
    grid-template-columns: 1fr;
  }
  .page-index-hot-games__game-card-image {
    height: 200px;
  }
  /* Content area images must not display smaller than 200px */
  .page-index-hot-games__hero-image,
  .page-index-hot-games__game-card-image,
  .page-index-hot-games__promo-image,
  .page-index-hot-games__app-image {
    max-width: 100%;
    height: auto;
  }
  .page-index-hot-games__promotions-section,
  .page-index-hot-games__app-download-section {
    padding: 40px 20px;
  }
  .page-index-hot-games__why-choose-us-section,
  .page-index-hot-games__faq-section,
  .page-index-hot-games__cta-section {
    padding: 60px 20px;
  }
  .page-index-hot-games__feature-item,
  .page-index-hot-games__faq-item {
    padding: 20px;
  }
  .page-index-hot-games__feature-title {
    font-size: 1.4em;
  }
  .page-index-hot-games__faq-question {
    font-size: 1.2em;
  }
  .page-index-hot-games__button--register-large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
}

@media (max-width: 480px) {
  .page-index-hot-games__hero-title {
    font-size: 1.8em;
  }
  .page-index-hot-games__section-title {
    font-size: 1.6em;
  }
  .page-index-hot-games__hero-section {
    padding: 40px 15px;
  }
  .page-index-hot-games__featured-games-section,
  .page-index-hot-games__promotions-section,
  .page-index-hot-games__app-download-section,
  .page-index-hot-games__why-choose-us-section,
  .page-index-hot-games__faq-section,
  .page-index-hot-games__cta-section {
    padding: 40px 15px;
  }
}