.page-index-hot-games {
  color: #333333; /* Dark text for light body background */
}

.page-index-hot-games__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #0A2342; /* Main dark blue background */
  color: #ffffff;
  overflow: hidden;
  padding-bottom: 80px;
}

.page-index-hot-games__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3; /* Subtle background image */
}

.page-index-hot-games__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-index-hot-games__hero-title {
  font-size: 3.2em;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD700; /* Gold for main title */
}

.page-index-hot-games__hero-description {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #f0f0f0;
}

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

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

.page-index-hot-games__button--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A2342;
  border: 2px solid #FFD700;
}

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

.page-index-hot-games__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-index-hot-games__button--secondary:hover {
  background-color: #FFD700;
  color: #0A2342;
  transform: translateY(-2px);
}

.page-index-hot-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-hot-games__section-title {
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 20px;
  color: #0A2342; /* Dark blue title */
}

.page-index-hot-games__section-title--spacing {
  margin-top: 80px;
}

.page-index-hot-games__section-intro {
  font-size: 1.1em;
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #555555;
}

.page-index-hot-games__featured-games-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

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

.page-index-hot-games__category-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-hot-games__category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.page-index-hot-games__category-image {
  width: 100%;
  height: 250px; /* Fixed height for category images */
  object-fit: cover;
  margin-bottom: 20px;
}

.page-index-hot-games__category-title {
  font-size: 1.8em;
  font-weight: 600;
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-index-hot-games__category-title a {
  color: #0A2342;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index-hot-games__category-title a:hover {
  color: #FFD700;
}

.page-index-hot-games__category-description {
  font-size: 0.95em;
  line-height: 1.5;
  color: #666666;
  margin-bottom: 25px;
  padding: 0 20px;
}

.page-index-hot-games__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

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

.page-index-hot-games__game-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-hot-games__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.page-index-hot-games__game-card-image {
  width: 100%;
  height: 220px; /* Fixed height for game card images */
  object-fit: cover;
}

.page-index-hot-games__game-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-index-hot-games__game-card-title {
  font-size: 1.6em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0A2342;
}

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

.page-index-hot-games__button--play {
  background-color: #0A2342;
  color: #FFD700;
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
  text-align: center;
  font-size: 0.95em;
  width: fit-content;
  align-self: flex-start;
}

.page-index-hot-games__button--play:hover {
  background-color: #1a3d6d;
  color: #ffffff;
  transform: translateY(-1px);
}

.page-index-hot-games__promotions-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0A2342 0%, #1a3d6d 100%); /* Dark blue gradient */
  color: #ffffff;
}

.page-index-hot-games__promotions-section .page-index-hot-games__section-title,
.page-index-hot-games__promotions-section .page-index-hot-games__section-intro {
  color: #ffffff;
}

.page-index-hot-games__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.page-index-hot-games__promo-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-index-hot-games__promo-card:hover {
  transform: translateY(-8px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-index-hot-games__promo-image {
  width: 100%;
  height: 280px; /* Fixed height for promo images */
  object-fit: cover;
  margin-bottom: 25px;
}

.page-index-hot-games__promo-title {
  font-size: 1.8em;
  font-weight: 600;
  margin-bottom: 15px;
  padding: 0 25px;
  color: #FFD700;
}

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

.page-index-hot-games__promo-title a:hover {
  text-decoration: underline;
}

.page-index-hot-games__promo-description {
  font-size: 1em;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 30px;
  padding: 0 25px;
  flex-grow: 1;
}

.page-index-hot-games__why-choose-section {
  padding: 80px 0;
  background-color: #ffffff;
}

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

.page-index-hot-games__feature-item {
  text-align: center;
  padding: 30px;
  background-color: #f0f4f8;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-hot-games__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.page-index-hot-games__feature-icon {
  width: 100px; /* Ensure icons are not too small */
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-index-hot-games__feature-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0A2342;
}

.page-index-hot-games__feature-title a {
  color: #0A2342;
  text-decoration: none;
}

.page-index-hot-games__feature-title a:hover {
  color: #FFD700;
}

.page-index-hot-games__feature-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: #666666;
}

.page-index-hot-games__cta-section {
  padding: 100px 20px;
  background-color: #FFD700; /* Gold background for CTA */
  text-align: center;
  color: #0A2342;
}

.page-index-hot-games__cta-title {
  font-size: 2.8em;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #0A2342;
}

.page-index-hot-games__cta-description {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #333333;
}

.page-index-hot-games__button--cta {
  background-color: #0A2342;
  color: #FFD700;
  padding: 18px 40px;
  font-size: 1.2em;
  border-radius: 10px;
}

.page-index-hot-games__button--cta:hover {
  background-color: #1a3d6d;
  color: #ffffff;
}

.page-index-hot-games__faq-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.page-index-hot-games__faq-list {
  max-width: 900px;
  margin: 50px auto 0 auto;
}

.page-index-hot-games__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.page-index-hot-games__faq-question {
  font-size: 1.3em;
  font-weight: 600;
  color: #0A2342;
  margin-bottom: 10px;
}

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

/* 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.2em;
  }
  .page-index-hot-games__button {
    padding: 12px 25px;
    font-size: 0.9em;
  }
  .page-index-hot-games__promo-grid {
    grid-template-columns: 1fr;
  }
}

@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-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-hot-games__button {
    width: 100%;
    max-width: 300px;
  }
  .page-index-hot-games__section-title {
    font-size: 1.8em;
  }
  .page-index-hot-games__section-intro {
    font-size: 0.95em;
  }
  .page-index-hot-games__game-categories,
  .page-index-hot-games__game-grid,
  .page-index-hot-games__features-grid {
    grid-template-columns: 1fr;
  }
  .page-index-hot-games__category-image,
  .page-index-hot-games__game-card-image,
  .page-index-hot-games__promo-image {
    max-width: 100%;
    height: auto; /* Ensure images scale down */
  }
  /* Enforce minimum image size for content images */
  .page-index-hot-games img {
    min-width: 200px;
    min-height: 200px;
  }
  .page-index-hot-games__cta-title {
    font-size: 2em;
  }
  .page-index-hot-games__cta-description {
    font-size: 1em;
  }
  .page-index-hot-games__button--cta {
    padding: 15px 30px;
    font-size: 1em;
  }
  .page-index-hot-games__faq-question {
    font-size: 1.1em;
  }
  /* Prevent horizontal overflow for content area */
  .page-index-hot-games {
    overflow-x: hidden;
  }
  .page-index-hot-games__container {
    padding: 0 15px;
  }
}

@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__category-card,
  .page-index-hot-games__game-card,
  .page-index-hot-games__promo-card,
  .page-index-hot-games__feature-item {
    padding: 20px;
  }
  .page-index-hot-games__category-image,
  .page-index-hot-games__game-card-image,
  .page-index-hot-games__promo-image {
    height: auto; /* Allow images to scale freely */
  }
  .page-index-hot-games__category-title,
  .page-index-hot-games__game-card-title,
  .page-index-hot-games__promo-title,
  .page-index-hot-games__feature-title {
    font-size: 1.4em;
  }
  .page-index-hot-games__cta-title {
    font-size: 1.8em;
  }
}