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

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

.page-index-hot-games__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.page-index-hot-games__section-description {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #C0C0C0;
}

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

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

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

.page-index-hot-games__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text for secondary button */
  border: 2px solid #FFD700;
  margin-left: 20px;
}

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

.page-index-hot-games__button--small {
    padding: 10px 20px;
    font-size: 0.95em;
    margin-top: 15px;
}

.page-index-hot-games__button--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

/* Hero Section */
.page-index-hot-games__hero {
  background: linear-gradient(135deg, #0A2342, #1A3E6C); /* Dark blue gradient */
  padding: 100px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 70vh;
  position: relative;
  overflow: hidden;
}

.page-index-hot-games__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, rgba(10, 35, 66, 0) 70%);
    animation: page-index-hot-games__pulse 15s infinite alternate;
    z-index: 0;
}

@keyframes page-index-hot-games__pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.2); opacity: 0.6; }
}

.page-index-hot-games__hero-content {
  flex: 1;
  max-width: 600px;
  z-index: 1;
}

.page-index-hot-games__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

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

.page-index-hot-games__hero-actions {
  display: flex;
  gap: 15px;
}

.page-index-hot-games__hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.page-index-hot-games__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: page-index-hot-games__float 3s ease-in-out infinite alternate;
}

@keyframes page-index-hot-games__float {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-15px); }
}

/* Why Choose Section */
.page-index-hot-games__why-choose {
  background-color: #1A3E6C; /* Slightly lighter dark blue */
  border-radius: 15px;
  margin-top: -50px;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.page-index-hot-games__feature-item {
  background-color: #0A2342;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.page-index-hot-games__feature-item:hover {
  transform: translateY(-10px);
}

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

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

.page-index-hot-games__feature-item p {
  color: #C0C0C0;
  font-size: 0.95em;
}

/* Game Categories Section */
.page-index-hot-games__game-category-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
  background-color: #1A3E6C;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-index-hot-games__game-category-item:last-child {
  margin-bottom: 0;
}

.page-index-hot-games__game-category-item--reverse {
  flex-direction: row-reverse;
}

.page-index-hot-games__game-category-image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-index-hot-games__game-category-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-index-hot-games__game-category-content {
  flex: 2;
}

.page-index-hot-games__game-category-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-index-hot-games__game-category-content p {
  color: #C0C0C0;
  margin-bottom: 20px;
}

.page-index-hot-games__game-category-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.page-index-hot-games__game-category-content ul li {
  color: #E0E0E0;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-index-hot-games__game-category-content ul li::before {
  content: '✓';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* How To Start Section */
.page-index-hot-games__how-to-start {
  background-color: #0A2342;
}

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

.page-index-hot-games__step-item {
  background-color: #1A3E6C;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.page-index-hot-games__step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 3em;
  color: rgba(255, 215, 0, 0.2);
  font-weight: bold;
  z-index: 0;
}

.page-index-hot-games__step-item h3, .page-index-hot-games__step-item p, .page-index-hot-games__step-item .page-index-hot-games__button {
  position: relative;
  z-index: 1;
}

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

.page-index-hot-games__step-item p {
  color: #C0C0C0;
  margin-bottom: 20px;
}

/* Promotions Section */
.page-index-hot-games__promotions {
  background-color: #1A3E6C;
}

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

.page-index-hot-games__promo-item {
  background-color: #0A2342;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.page-index-hot-games__promo-item:hover {
  transform: translateY(-10px);
}

.page-index-hot-games__promo-image {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

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

.page-index-hot-games__promo-item p {
  color: #C0C0C0;
}

.page-index-hot-games__cta-center {
    text-align: center;
}

/* FAQ Section */
.page-index-hot-games__faq {
  background-color: #0A2342;
}

.page-index-hot-games__faq-item {
  background-color: #1A3E6C;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-index-hot-games__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-index-hot-games__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

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

.page-index-hot-games__faq-answer {
  color: #C0C0C0;
  font-size: 1.05em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.page-index-hot-games__faq-answer.active {
    max-height: 200px; /* Adjust based on expected content length */
    padding-top: 15px;
}

/* Conclusion Section */
.page-index-hot-games__conclusion {
  background-color: #1A3E6C;
  text-align: center;
  padding: 80px 20px;
}

.page-index-hot-games__conclusion .page-index-hot-games__section-title {
    margin-bottom: 20px;
}

.page-index-hot-games__conclusion .page-index-hot-games__section-description {
    margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-hot-games__hero {
    flex-direction: column;
    text-align: center;
    padding: 80px 20px;
  }

  .page-index-hot-games__hero-content {
    max-width: 100%;
  }

  .page-index-hot-games__hero-title {
    font-size: 2.8em;
  }

  .page-index-hot-games__hero-description {
    font-size: 1.1em;
  }

  .page-index-hot-games__hero-actions {
    justify-content: center;
  }

  .page-index-hot-games__game-category-item {
    flex-direction: column;
  }

  .page-index-hot-games__game-category-item--reverse {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-index-hot-games__section-title {
    font-size: 2.2em;
  }

  .page-index-hot-games__hero-title {
    font-size: 2.5em;
  }

  .page-index-hot-games__button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-index-hot-games__button--secondary {
    margin-left: 10px;
  }

  .page-index-hot-games__game-category-title {
    font-size: 1.8em;
  }

  .page-index-hot-games__features-grid,
  .page-index-hot-games__steps-grid,
  .page-index-hot-games__promo-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-index-hot-games__section {
    padding: 40px 15px;
  }

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

  .page-index-hot-games__hero-actions {
    flex-direction: column;
    gap: 10px;
  }

  .page-index-hot-games__button--secondary {
    margin-left: 0;
  }

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

  .page-index-hot-games__feature-title,
  .page-index-hot-games__promo-title,
  .page-index-hot-games__step-title {
    font-size: 1.3em;
  }

  .page-index-hot-games__faq-question {
    font-size: 1.2em;
  }
}