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

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

/* Hero Section */
.page-index-hot-games__hero {
  background: linear-gradient(135deg, #0A2463 0%, #000F31 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

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

.page-index-hot-games__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

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

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

.page-index-hot-games__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #0A2463; /* Dark blue */
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-index-hot-games__btn--primary:hover {
  background-color: #E6C200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-index-hot-games__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.page-index-hot-games__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2463;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

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

.page-index-hot-games__btn--inline {
  background-color: transparent;
  color: #FFD700;
  border: 1px solid #FFD700;
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 0.9em;
  margin-top: 15px;
}

.page-index-hot-games__btn--inline:hover {
  background-color: #FFD700;
  color: #0A2463;
}

/* General Section Styling */
.page-index-hot-games__section {
  padding: 80px 0;
  background-color: #0A2463; /* Main dark background */
}

.page-index-hot-games__section:nth-of-type(even) {
  background-color: #071C4A; /* Slightly darker shade for alternating sections */
}

.page-index-hot-games__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold */
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-index-hot-games__section-subtitle {
  font-size: 1.2em;
  color: #B0B0B0;
  text-align: center;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.page-index-hot-games__about .page-index-hot-games__content-grid {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-index-hot-games__about .page-index-hot-games__text-content {
  flex: 1;
}

.page-index-hot-games__about .page-index-hot-games__text-content p {
  margin-bottom: 15px;
  color: #E0E0E0;
}

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

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

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

.page-index-hot-games__game-card {
  background-color: #1A3A7C; /* Slightly lighter dark blue for cards */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-index-hot-games__game-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-index-hot-games__game-card-title {
  font-size: 1.6em;
  color: #FFD700; /* Gold */
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-index-hot-games__game-card-title a {
  color: inherit;
  text-decoration: none;
}

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

.page-index-hot-games__game-card-description {
  font-size: 0.95em;
  color: #C0C0C0;
  margin-bottom: 25px;
  padding: 0 20px;
  flex-grow: 1;
}

/* Promotions Section */
.page-index-hot-games__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.page-index-hot-games__promo-card {
  background-color: #1A3A7C;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-index-hot-games__promo-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-index-hot-games__promo-card-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
  padding: 0 20px;
}

.page-index-hot-games__promo-card-description {
  font-size: 0.9em;
  color: #C0C0C0;
  margin-bottom: 20px;
  padding: 0 20px;
  flex-grow: 1;
}

.page-index-hot-games__promo-footer {
  text-align: center;
  font-size: 1.1em;
  margin-top: 50px;
  color: #FFD700;
}

.page-index-hot-games__promo-footer strong {
  color: #FFD700;
}

/* Guide Section */
.page-index-hot-games__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-index-hot-games__step-card {
  background-color: #1A3A7C;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-index-hot-games__step-icon {
  width: 60px;
  height: 60px;
  background-color: #FFD700;
  color: #0A2463;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.2em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

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

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

/* Responsible Gambling */
.page-index-hot-games__responsible-gambling .page-index-hot-games__content-grid {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-direction: row-reverse; /* Image on right, text on left */
}

.page-index-hot-games__responsible-gambling .page-index-hot-games__text-content p {
  margin-bottom: 15px;
  color: #E0E0E0;
}

/* FAQ Section */
.page-index-hot-games__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-index-hot-games__faq-item {
  background-color: #1A3A7C;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.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.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: #C0C0C0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
  opacity: 0;
  padding-top: 0;
}

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

/* Final CTA */
.page-index-hot-games__cta-final {
  background: linear-gradient(90deg, #0A2463 0%, #FFD700 100%); /* Gradient background */
  padding: 80px 0;
  text-align: center;
  color: #0A2463;
}

.page-index-hot-games__cta-title {
  font-size: 3em;
  color: #0A2463; /* Dark blue for title on bright background */
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.page-index-hot-games__cta-description {
  font-size: 1.4em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #0A2463;
}

.page-index-hot-games__cta-final .page-index-hot-games__btn--primary {
  background-color: #0A2463;
  color: #FFD700;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-index-hot-games__cta-final .page-index-hot-games__btn--primary:hover {
  background-color: #000F31;
  color: #FFD700;
}

.page-index-hot-games__cta-final .page-index-hot-games__btn--secondary {
  background-color: transparent;
  color: #0A2463;
  border: 2px solid #0A2463;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-index-hot-games__cta-final .page-index-hot-games__btn--secondary:hover {
  background-color: #0A2463;
  color: #FFD700;
}

/* Responsive Design */
@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__about .page-index-hot-games__content-grid,
  .page-index-hot-games__responsible-gambling .page-index-hot-games__content-grid {
    flex-direction: column;
  }
  .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__hero-description {
    font-size: 1.1em;
  }
  .page-index-hot-games__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-hot-games__btn {
    width: 80%;
    max-width: 300px;
  }
  .page-index-hot-games__section {
    padding: 60px 0;
  }
  .page-index-hot-games__section-title {
    font-size: 1.8em;
  }
  .page-index-hot-games__section-subtitle {
    font-size: 1em;
    margin-bottom: 40px;
  }
  .page-index-hot-games__game-grid,
  .page-index-hot-games__promo-grid,
  .page-index-hot-games__guide-steps {
    grid-template-columns: 1fr;
  }
  .page-index-hot-games__cta-title {
    font-size: 2em;
  }
  .page-index-hot-games__cta-description {
    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.5em;
  }
  .page-index-hot-games__btn {
    width: 90%;
    max-width: unset;
  }
  .page-index-hot-games__game-card-title,
  .page-index-hot-games__promo-card-title,
  .page-index-hot-games__step-title {
    font-size: 1.4em;
  }
  .page-index-hot-games__faq-question {
    font-size: 1.2em;
  }
  .page-index-hot-games__cta-title {
    font-size: 1.8em;
  }
}