/* style/index-hot-games.css */
.page-index-hot-games {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* Light text for dark background */
  background-color: #1A2C42; /* Main dark background */
}

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

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

.page-index-hot-games__section:nth-of-type(even) {
  background-color: rgba(224, 177, 71, 0.1); /* Light tint of auxiliary color */
}

.page-index-hot-games__hero-section {
  background: linear-gradient(135deg, #1A2C42 0%, #3A4E67 100%);
  padding: 100px 0;
  text-align: center;
}

.page-index-hot-games__hero-title {
  font-size: 3.5em;
  color: #E0B147; /* Auxiliary color for emphasis */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-index-hot-games__hero-description {
  font-size: 1.2em;
  color: #CCCCCC;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-index-hot-games__hero-actions .page-index-hot-games__btn {
  margin: 0 10px;
}

.page-index-hot-games__section-title {
  font-size: 2.8em;
  color: #E0B147;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.page-index-hot-games__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #E0B147;
  border-radius: 2px;
}

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

.page-index-hot-games__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-index-hot-games__btn--primary {
  background-color: #E0B147;
  color: #1A2C42;
}

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

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

.page-index-hot-games__btn--secondary:hover {
  background-color: #E0B147;
  color: #1A2C42;
  transform: translateY(-2px);
}

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

.page-index-hot-games__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  text-align: left;
}

.page-index-hot-games__text-content p {
  font-size: 1.05em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #D0D0D0;
}

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

.page-index-hot-games__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.page-index-hot-games__category-card {
  background-color: #2A3E54; /* Slightly lighter dark blue */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-index-hot-games__card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

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

.page-index-hot-games__card-title a:hover {
  color: #f0c86b;
}

.page-index-hot-games__card-description {
  font-size: 0.95em;
  color: #C0C0C0;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

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

.page-index-hot-games__feature-item {
  background-color: #2A3E54;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

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

.page-index-hot-games__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(224, 177, 71, 0.5));
}

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

.page-index-hot-games__feature-item p {
  font-size: 1em;
  color: #D0D0D0;
  line-height: 1.7;
  margin-bottom: 20px;
}

.page-index-hot-games__responsible-gambling {
  background-color: #1A2C42;
  border-top: 1px solid rgba(224, 177, 71, 0.2);
}

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

.page-index-hot-games__cta-section {
  background: linear-gradient(45deg, #1A2C42 0%, #E0B147 100%);
  padding: 100px 0;
}

.page-index-hot-games__cta-title {
  font-size: 3em;
  color: #1A2C42;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.page-index-hot-games__cta-description {
  font-size: 1.2em;
  color: #333333;
  max-width: 800px;
  margin: 0 auto 50px;
}

.page-index-hot-games__cta-actions .page-index-hot-games__btn {
  margin: 0 15px;
  color: #1A2C42;
  background-color: #FFFFFF;
  border: 2px solid #1A2C42;
}

.page-index-hot-games__cta-actions .page-index-hot-games__btn:hover {
  background-color: #1A2C42;
  color: #E0B147;
  border-color: #E0B147;
}

.page-index-hot-games__faq-section {
  background-color: #1A2C42;
  text-align: left;
}

.page-index-hot-games__faq-list {
  margin-top: 50px;
}

.page-index-hot-games__faq-item {
  background-color: #2A3E54;
  border-radius: 10px;
  padding: 25px 30px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-index-hot-games__faq-question {
  font-size: 1.4em;
  color: #E0B147;
  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.5em;
  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 {
  font-size: 1em;
  color: #D0D0D0;
  line-height: 1.7;
  display: none;
  padding-top: 10px;
}

.page-index-hot-games__faq-answer.show {
  display: block;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-index-hot-games__hero-title {
    font-size: 2.8em;
  }
  .page-index-hot-games__section-title {
    font-size: 2.2em;
  }
  .page-index-hot-games__content-grid {
    grid-template-columns: 1fr;
  }
  .page-index-hot-games__image-wrapper {
    order: -1; /* Image first on smaller screens */
    margin-bottom: 30px;
  }
  .page-index-hot-games__category-grid, .page-index-hot-games__feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-index-hot-games__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-index-hot-games__hero-title {
    font-size: 2.2em;
  }
  .page-index-hot-games__section-title {
    font-size: 1.8em;
  }
  .page-index-hot-games__hero-description, .page-index-hot-games__section-description {
    font-size: 1em;
  }
  .page-index-hot-games__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-hot-games__hero-actions .page-index-hot-games__btn {
    margin: 10px 0;
    display: block;
  }
  .page-index-hot-games__cta-title {
    font-size: 2em;
  }
  .page-index-hot-games__cta-actions .page-index-hot-games__btn {
    margin: 10px 0;
    display: block;
  }
  .page-index-hot-games__faq-question {
    font-size: 1.2em;
  }
}

@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-grid, .page-index-hot-games__feature-grid {
    grid-template-columns: 1fr;
  }
  .page-index-hot-games__cta-title {
    font-size: 1.8em;
  }
  .page-index-hot-games__btn {
    width: 100%;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
}