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

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

.page-index-hot-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background-color: #0A2342; /* Main color as background */
  color: #ffffff;
  overflow: hidden;
}

.page-index-hot-games__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.3; /* Slightly transparent to let background color show */
}

.page-index-hot-games__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* No filter to change image color */
}

.page-index-hot-games__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-index-hot-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Accent color for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-hot-games__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-index-hot-games__button--primary {
  background-color: #FFD700; /* Accent color */
  color: #0A2342; /* Main color as text */
  border: none;
}

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

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

.page-index-hot-games__button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

.page-index-hot-games__introduction-section,
.page-index-hot-games__game-categories,
.page-index-hot-games__why-choose-jiliph888,
.page-index-hot-games__how-to-start,
.page-index-hot-games__responsible-gaming,
.page-index-hot-games__faq-section,
.page-index-hot-games__join-community {
  padding: 60px 0;
}

.page-index-hot-games__introduction-section {
  background-color: #f0f0f0;
}

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

.page-index-hot-games__section-description {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-index-hot-games__game-categories {
  background-color: #ffffff;
}

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

.page-index-hot-games__category-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding-bottom: 20px;
}

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

.page-index-hot-games__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
  /* No filter to change image color */
}

.page-index-hot-games__card-title {
  font-size: 1.8em;
  color: #0A2342; /* Main color */
  margin: 15px 15px 10px 15px;
}

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

.page-index-hot-games__category-card .page-index-hot-games__button {
  margin-top: auto; /* Push button to bottom */
  align-self: center;
  background-color: #0A2342; /* Main color for play buttons */
  color: #FFD700;
  padding: 10px 25px;
  font-size: 1em;
}

.page-index-hot-games__category-card .page-index-hot-games__button:hover {
  background-color: #071a33;
}

.page-index-hot-games__why-choose-jiliph888 {
  background-color: #0A2342;
  color: #ffffff;
}

.page-index-hot-games__why-choose-jiliph888 .page-index-hot-games__section-title {
  color: #FFD700;
}

.page-index-hot-games__why-choose-jiliph888 .page-index-hot-games__section-description {
  color: #e0e0e0;
}

.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: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-index-hot-games__feature-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
  /* No filter to change image color */
  min-width: 200px; /* Enforcing minimum size */
  min-height: 200px; /* Enforcing minimum size */
}

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

.page-index-hot-games__feature-text {
  color: #cccccc;
}

.page-index-hot-games__cta-bottom {
  text-align: center;
  margin-top: 50px;
}

.page-index-hot-games__how-to-start {
  background-color: #f0f0f0;
}

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

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

.page-index-hot-games__step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background-color: #FFD700; /* Accent color */
  color: #0A2342; /* Main color */
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-index-hot-games__step-title {
  font-size: 1.6em;
  color: #0A2342; /* Main color */
  margin-bottom: 10px;
}

.page-index-hot-games__step-text {
  color: #666666;
}

.page-index-hot-games__responsible-gaming {
  background-color: #e6f7ff; /* Lighter blue/grey for contrast */
}

.page-index-hot-games__responsible-gaming .page-index-hot-games__section-title {
  color: #0A2342;
}

.page-index-hot-games__responsible-gaming .page-index-hot-games__section-description {
  color: #444444;
}

.page-index-hot-games__link {
  color: #0A2342;
  text-decoration: underline;
  font-weight: bold;
  display: block;
  text-align: center;
  margin-top: 20px;
}

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

.page-index-hot-games__faq-section {
  background-color: #ffffff;
}

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

.page-index-hot-games__faq-item {
  margin-bottom: 15px;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  overflow: hidden;
}

.page-index-hot-games__faq-question {
  background-color: #0A2342; /* Main color */
  color: #ffffff;
  width: 100%;
  text-align: left;
  padding: 18px 25px;
  font-size: 1.1em;
  font-weight: bold;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-index-hot-games__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-index-hot-games__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-index-hot-games__faq-question:hover {
  background-color: #1a3a5e;
}

.page-index-hot-games__faq-answer {
  padding: 0 25px;
  background-color: #f9f9f9;
  color: #555555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-index-hot-games__faq-answer.active {
  max-height: 200px; /* Adjust as needed for content */
  padding: 15px 25px;
}

.page-index-hot-games__join-community {
  background-color: #0A2342;
  color: #ffffff;
  text-align: center;
}

.page-index-hot-games__join-community .page-index-hot-games__section-title {
  color: #FFD700;
}

.page-index-hot-games__join-community .page-index-hot-games__section-description {
  color: #e0e0e0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-hot-games__cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-hot-games__hero-title {
    font-size: 3em;
  }
  .page-index-hot-games__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-index-hot-games__hero-section {
    padding: 60px 15px;
  }
  .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%;
    padding: 12px 20px;
  }
  .page-index-hot-games__section-title {
    font-size: 1.8em;
  }
  .page-index-hot-games__section-description {
    font-size: 0.95em;
  }
  .page-index-hot-games__category-grid,
  .page-index-hot-games__features-grid,
  .page-index-hot-games__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-index-hot-games__category-card .page-index-hot-games__card-image,
  .page-index-hot-games__feature-icon {
    max-width: 100%;
    height: auto; /* Ensure images are responsive and don't overflow */
    min-width: 200px; /* Maintain minimum display size */
    min-height: 200px; /* Maintain minimum display size */
  }
  .page-index-hot-games__cta-actions {
    flex-direction: column;
  }
  .page-index-hot-games__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-index-hot-games__faq-answer {
    padding: 10px 20px;
  }
  .page-index-hot-games__container {
    padding: 0 15px;
  }

  /* Ensure all content area images are responsive and do not cause horizontal scroll */
  .page-index-hot-games img {
    max-width: 100%;
    height: auto;
  }
  .page-index-hot-games {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-index-hot-games__hero-title {
    font-size: 1.8em;
  }
  .page-index-hot-games__section-title {
    font-size: 1.5em;
  }
  .page-index-hot-games__button {
    font-size: 0.9em;
  }
  .page-index-hot-games__card-title {
    font-size: 1.5em;
  }
  .page-index-hot-games__feature-title,
  .page-index-hot-games__step-title {
    font-size: 1.3em;
  }
}