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

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

.page-index-hot-games__section-title {
  font-size: 2.5em;
  color: #FFC107; /* Secondary gold for titles */
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-index-hot-games__section-title--light {
  color: #FFFFFF; /* White for titles on dark gold/blue backgrounds */
}

.page-index-hot-games__section-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 50px;
  color: #cccccc; /* Lighter gray for intros */
}

.page-index-hot-games__section-intro--light {
  color: #f0f0f0; /* Even lighter gray/white for intros on darker backgrounds */
}

/* Hero Section */
.page-index-hot-games__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0A1931 0%, #2a4a75 100%); /* Gradient from primary to a slightly lighter blue */
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

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

.page-index-hot-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: 700;
  color: #FFC107;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.page-index-hot-games__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  line-height: 1.5;
  color: #f0f0f0;
}

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

.page-index-hot-games__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15; /* Subtle background image */
  z-index: 1;
}

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

/* Buttons */
.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: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-index-hot-games__btn--primary {
  background-color: #FFC107; /* Secondary gold */
  color: #0A1931; /* Dark blue text for contrast */
}

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

.page-index-hot-games__btn--secondary {
  background-color: #0A1931; /* Primary dark blue */
  color: #FFC107; /* Gold text for contrast */
  border: 2px solid #FFC107;
}

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

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

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

/* Why Choose Section */
.page-index-hot-games__why-choose {
  padding: 80px 0;
  background-color: #1a2a47; /* Slightly lighter dark blue */
}

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

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

.page-index-hot-games__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.page-index-hot-games__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFC107); /* Gold glow for icons */
}

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

.page-index-hot-games__feature-description {
  font-size: 1em;
  color: #cccccc;
}

/* Games Showcase Section */
.page-index-hot-games__games-showcase {
  padding: 80px 0;
  background-color: #0A1931;
}

.page-index-hot-games__game-category {
  margin-bottom: 60px;
}

.page-index-hot-games__category-title {
  font-size: 2em;
  color: #FFC107;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

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

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

.page-index-hot-games__game-item {
  background-color: #1a2a47; /* Slightly lighter dark blue */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-index-hot-games__game-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.page-index-hot-games__game-thumbnail {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #FFC107;
}

.page-index-hot-games__game-name {
  font-size: 1.6em;
  color: #FFC107;
  margin: 20px 0 10px;
  padding: 0 15px;
}

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

.page-index-hot-games__game-item .page-index-hot-games__btn {
  margin: 0 15px 20px;
}

/* CTA Section */
.page-index-hot-games__cta-section {
  background-color: #FFC107; /* Secondary gold */
  padding: 80px 20px;
  text-align: center;
  color: #0A1931; /* Dark blue text for contrast */
}

.page-index-hot-games__cta-section .page-index-hot-games__section-title {
  color: #0A1931;
}

.page-index-hot-games__cta-section .page-index-hot-games__section-intro {
  color: #333333;
}

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

.page-index-hot-games__cta-actions .page-index-hot-games__btn--primary {
  background-color: #0A1931; /* Dark blue background */
  color: #FFC107; /* Gold text */
}

.page-index-hot-games__cta-actions .page-index-hot-games__btn--primary:hover {
  background-color: #1a3053;
}

.page-index-hot-games__cta-actions .page-index-hot-games__btn--secondary {
  background-color: transparent;
  color: #0A1931;
  border: 2px solid #0A1931;
}

.page-index-hot-games__cta-actions .page-index-hot-games__btn--secondary:hover {
  background-color: rgba(10, 25, 49, 0.1);
}

/* Guide Section */
.page-index-hot-games__guide-section {
  padding: 80px 0;
  background-color: #0A1931;
}

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

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

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

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

.page-index-hot-games__step-description {
  font-size: 1em;
  color: #cccccc;
}

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

/* Tips Section */
.page-index-hot-games__tips-section {
  padding: 80px 0;
  background-color: #1a2a47;
}

.page-index-hot-games__tips-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto 50px;
}

.page-index-hot-games__tips-list li {
  background-color: #0A1931;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-left: 5px solid #FFC107;
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  color: #e0e0e0;
  font-size: 1.05em;
}

.page-index-hot-games__tips-list li strong {
  color: #FFC107;
}

.page-index-hot-games__section-outro {
  font-size: 1.1em;
  text-align: center;
  color: #cccccc;
}

/* FAQ Section */
.page-index-hot-games__faq-section {
  padding: 80px 0;
  background-color: #0A1931;
}

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

.page-index-hot-games__faq-item {
  background-color: #1a2a47;
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.page-index-hot-games__faq-question {
  font-size: 1.3em;
  color: #FFC107;
  padding: 20px 25px;
  cursor: pointer;
  position: relative;
  margin: 0;
  background-color: #1a2a47;
  border-bottom: 1px solid #2a4a75;
}

.page-index-hot-games__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  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: #cccccc;
  padding: 0 25px 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

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

/* Final CTA Section */
.page-index-hot-games__final-cta {
  background-color: #FFC107; /* Secondary gold */
  padding: 100px 20px;
  text-align: center;
  color: #0A1931; /* Dark blue text */
}

.page-index-hot-games__final-cta-content {
    max-width: 900px;
}

.page-index-hot-games__final-cta .page-index-hot-games__section-title {
  color: #0A1931;
}

.page-index-hot-games__final-cta .page-index-hot-games__section-intro {
  color: #333333;
  margin-bottom: 50px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-hot-games__hero-title {
    font-size: 2.8em;
  }
  .page-index-hot-games__hero-description {
    font-size: 1.1em;
  }
  .page-index-hot-games__section-title {
    font-size: 2em;
  }
  .page-index-hot-games__category-title {
    font-size: 1.8em;
  }
}

@media (max-width: 768px) {
  .page-index-hot-games__hero {
    padding: 60px 20px;
  }
  .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__btn {
    width: 100%;
    max-width: 300px;
  }
  .page-index-hot-games__section-title {
    font-size: 1.8em;
  }
  .page-index-hot-games__section-intro {
    font-size: 0.95em;
  }
  .page-index-hot-games__features-grid,
  .page-index-hot-games__game-list,
  .page-index-hot-games__guide-steps {
    grid-template-columns: 1fr;
  }
  .page-index-hot-games__game-thumbnail {
    height: 180px;
  }
  .page-index-hot-games__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-hot-games__guide-actions {
    flex-direction: column;
    gap: 15px;
  }
}

@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 {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-index-hot-games__feature-title, .page-index-hot-games__step-title {
    font-size: 1.3em;
  }
  .page-index-hot-games__category-title {
    font-size: 1.5em;
  }
  .page-index-hot-games__game-name {
    font-size: 1.4em;
  }
  .page-index-hot-games__faq-question {
    font-size: 1.1em;
  }
}