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

.page-index-hot-games .highlight {
  color: #FFD700; /* Secondary accent color */
}

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

.page-index-hot-games__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0A1931 0%, #1A2E4B 100%);
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
}

.page-index-hot-games__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:background:abstract_pattern,geometric]');
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  z-index: 0;
}

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

.page-index-hot-games__hero-image-wrapper {
  position: relative;
  z-index: 1;
  margin-top: 40px;
}

.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);
}

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

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

.page-index-hot-games__hero-cta {
  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;
  white-space: nowrap;
}

.page-index-hot-games__button--primary {
  background-color: #FFD700; /* Gold */
  color: #0A1931; /* Dark blue */
  border: none;
}

.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 */
  border: 2px solid #FFD700;
}

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

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

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

.page-index-hot-games__section {
  padding: 60px 0;
  text-align: center;
}

.page-index-hot-games__section--dark {
  background-color: #0C1D3A;
}

.page-index-hot-games__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.page-index-hot-games__section-description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #B0B0B0;
}

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

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

.page-index-hot-games__feature-item:hover {
  transform: translateY(-5px);
  background-color: #213B60;
}

.page-index-hot-games__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

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

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

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

.page-index-hot-games__category-card {
  background-color: #1A2E4B;
  border-radius: 10px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-index-hot-games__category-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

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

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

.page-index-hot-games__category-text {
  color: #E0E0E0;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.page-index-hot-games__promotion-card {
  background-color: #1A2E4B;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-index-hot-games__promotion-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

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

.page-index-hot-games__promotion-text {
  color: #E0E0E0;
  padding: 0 15px 20px;
  flex-grow: 1;
}

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

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

.page-index-hot-games__step-number {
  width: 50px;
  height: 50px;
  background-color: #FFD700;
  color: #0A1931;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  margin: 0 auto 20px;
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
}

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

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

.page-index-hot-games__final-cta {
  margin-top: 50px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-index-hot-games__faq-list {
  margin-top: 40px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-hot-games__faq-item {
  background-color: #1A2E4B;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-index-hot-games__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  padding: 20px 25px;
  cursor: pointer;
  position: relative;
  margin: 0;
  transition: background-color 0.3s ease;
}

.page-index-hot-games__faq-question:hover {
  background-color: #213B60;
}

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

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

.page-index-hot-games__faq-answer {
  padding: 0 25px 20px;
  color: #E0E0E0;
  font-size: 1.05em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

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

.page-index-hot-games__cta-banner {
  background: linear-gradient(90deg, #FFD700, #DC143C);
  padding: 60px 20px;
  text-align: center;
  color: #0A1931;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-index-hot-games__cta-banner .page-index-hot-games__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-index-hot-games__cta-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #0A1931;
}

.page-index-hot-games__cta-title .highlight {
  color: #0A1931; /* Change highlight color for contrast on yellow/red background */
}

.page-index-hot-games__cta-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #333;
  max-width: 700px;
}

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

/* Responsive adjustments */
@media (min-width: 768px) {
  .page-index-hot-games__hero {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    gap: 40px;
    padding: 100px 40px;
  }

  .page-index-hot-games__hero-content {
    flex: 1;
    text-align: left;
  }

  .page-index-hot-games__hero-image-wrapper {
    flex: 1;
    margin-top: 0;
  }

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

  .page-index-hot-games__hero-cta {
    justify-content: flex-start;
  }

  .page-index-hot-games__cta-banner .page-index-hot-games__container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

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

  .page-index-hot-games__cta-image {
    flex: 1;
    max-width: 40%;
  }
}

@media (max-width: 767px) {
  .page-index-hot-games__hero-title {
    font-size: 2.5em;
  }

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

  .page-index-hot-games__hero-cta {
    flex-direction: column;
    gap: 15px;
  }

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

  .page-index-hot-games__button--large {
    width: 100%;
    box-sizing: border-box;
  }

  .page-index-hot-games__final-cta {
    flex-direction: column;
  }

  .page-index-hot-games__final-cta .page-index-hot-games__button {
    width: 100%;
  }

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

  .page-index-hot-games__cta-description {
    font-size: 1em;
  }
}