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

.page-index-today-hot-games .text-highlight {
  color: #FFD700; /* Gold for highlights */
}

/* Hero Section */
.page-index-today-hot-games__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #0A1931 0%, #1A2B47 100%); /* Gradient background for hero */
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid #FFD700;
}

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

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

.page-index-today-hot-games__hero-description {
  font-size: 1.2em;
  color: #D0D0D0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-today-hot-games__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A1931; /* Dark blue text on gold button */
  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;
  border: none;
  cursor: pointer;
}

.page-index-today-hot-games__cta-button:hover {
  background-color: #E0B800; /* Darker gold on hover */
  transform: translateY(-3px);
}

.page-index-today-hot-games__hero-image-wrapper {
  margin-top: 40px;
  width: 100%;
  max-width: 1000px;
}

.page-index-today-hot-games__hero-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

/* General Section Styling */
.page-index-today-hot-games__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-index-today-hot-games__section-title {
  font-size: 2.8em;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-index-today-hot-games__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

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

/* Why Choose Section */
.page-index-today-hot-games__why-choose {
  background-color: #1A2B47;
  border-radius: 15px;
  margin-top: 40px;
  margin-bottom: 40px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

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

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

.page-index-today-hot-games__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

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

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

.page-index-today-hot-games__feature-text {
  font-size: 1em;
  color: #D0D0D0;
}

.page-index-today-hot-games__read-more-link {
  display: inline-block;
  margin-top: 20px;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-index-today-hot-games__read-more-link:hover {
  color: #FFFFFF;
}

/* Game Categories Section */
.page-index-today-hot-games__game-category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #1A2B47;
  border-radius: 15px;
  margin-bottom: 40px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-index-today-hot-games__game-category-item.--reverse {
  flex-direction: column-reverse; /* For mobile, always column */
}

.page-index-today-hot-games__game-category-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 2px solid #FFD700;
}

.page-index-today-hot-games__game-category-content {
  padding: 30px;
  text-align: center;
}

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

.page-index-today-hot-games__game-category-text {
  font-size: 1.05em;
  color: #D0D0D0;
  margin-bottom: 25px;
}

.page-index-today-hot-games__game-category-cta {
  background-color: #FFD700;
  color: #0A1931;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-index-today-hot-games__game-category-cta:hover {
  background-color: #E0B800;
  transform: translateY(-2px);
}

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

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

.page-index-today-hot-games__step-item {
  background-color: #1A2B47;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

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

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

.page-index-today-hot-games__step-text {
  font-size: 1em;
  color: #D0D0D0;
  margin-bottom: 20px;
}

.page-index-today-hot-games__step-cta {
  background-color: #0A1931;
  color: #FFD700;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid #FFD700;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-index-today-hot-games__step-cta:hover {
  background-color: #FFD700;
  color: #0A1931;
}

.page-index-today-hot-games__app-image {
  display: block;
  max-width: 800px;
  width: 100%;
  margin: 50px auto 0;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 2px solid #FFD700;
}

/* Expert Tips Section */
.page-index-today-hot-games__expert-tips {
  background-color: #1A2B47;
  border-radius: 15px;
  margin-top: 40px;
  margin-bottom: 40px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-index-today-hot-games__tips-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.page-index-today-hot-games__tips-list li {
  background-color: #0A1931;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-index-today-hot-games__tips-list h3 {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-index-today-hot-games__tips-list p {
  font-size: 1em;
  color: #D0D0D0;
}

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

.page-index-today-hot-games__faq-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-index-today-hot-games__faq-item {
  background-color: #1A2B47;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

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

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

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

.page-index-today-hot-games__faq-answer {
  font-size: 1em;
  color: #D0D0D0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

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

/* CTA Banner */
.page-index-today-hot-games__cta-banner {
  background: linear-gradient(90deg, #FFD700 0%, #E0B800 100%);
  padding: 60px 20px;
  text-align: center;
  border-top: 2px solid #0A1931;
  border-bottom: 2px solid #0A1931;
  margin-top: 60px;
}

.page-index-today-hot-games__cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-index-today-hot-games__cta-title {
  font-size: 3em;
  color: #0A1931;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.page-index-today-hot-games__cta-button.--large {
  padding: 18px 40px;
  font-size: 1.3em;
  background-color: #0A1931;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-index-today-hot-games__cta-button.--large:hover {
  background-color: #1A2B47;
  color: #FFD700;
  border-color: #FFFFFF;
}

/* Responsive Design */
@media (min-width: 768px) {
  .page-index-today-hot-games__hero {
    flex-direction: row;
    text-align: left;
    padding: 100px 40px;
  }

  .page-index-today-hot-games__hero-content {
    text-align: left;
    padding-right: 40px;
  }

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

  .page-index-today-hot-games__hero-description {
    font-size: 1.3em;
    margin-left: 0;
    margin-right: 0;
  }

  .page-index-today-hot-games__hero-image-wrapper {
    margin-top: 0;
    flex-shrink: 0;
    width: 50%;
    max-width: none;
  }

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

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

  .page-index-today-hot-games__game-category-image {
    width: 50%;
    height: 400px;
    border-bottom: none;
    border-right: 2px solid #FFD700;
  }

  .page-index-today-hot-games__game-category-item.--reverse .page-index-today-hot-games__game-category-image {
    border-right: none;
    border-left: 2px solid #FFD700;
  }

  .page-index-today-hot-games__game-category-content {
    width: 50%;
    text-align: left;
    padding: 40px;
  }

  .page-index-today-hot-games__app-image {
    max-width: 600px;
  }

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

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

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

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

  .page-index-today-hot-games__game-category-image {
    height: 200px;
  }
}