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

.page-index-hot-games-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-index-hot-games-section-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-index-hot-games-section-subtitle {
  font-size: 1.2em;
  color: #B0B0B0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-index-hot-games-hero {
  background: linear-gradient(135deg, #1A202C 0%, #3a475d 100%); /* Dark gradient for hero */
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.page-index-hot-games-hero-content {
  max-width: 900px;
  text-align: center;
  z-index: 1;
}

.page-index-hot-games-hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 25px;
  font-weight: bold;
  line-height: 1.1;
}

.page-index-hot-games-hero-description {
  font-size: 1.3em;
  color: #E5E5E5;
  margin-bottom: 40px;
  line-height: 1.7;
}

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

.page-index-hot-games-btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-index-hot-games-btn-primary {
  background-color: #FFD700;
  color: #1A202C;
  border: 2px solid #FFD700;
}

.page-index-hot-games-btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
}

.page-index-hot-games-btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-index-hot-games-btn-secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-3px);
}

.page-index-hot-games-hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  margin-top: 40px;
}

/* Featured Games Section */
.page-index-hot-games-featured-games {
  background-color: #242B38;
}

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

.page-index-hot-games-game-card {
  background-color: #1A202C;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 6px 20px 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-hot-games-game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.page-index-hot-games-game-card img {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #333;
}

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

.page-index-hot-games-game-description {
  font-size: 1em;
  color: #B0B0B0;
  margin-bottom: 25px;
  min-height: 90px; /* Ensure consistent card height */
}

.page-index-hot-games-btn-small {
  padding: 10px 25px;
  font-size: 0.95em;
  background-color: #FFD700;
  color: #1A202C;
  border: 1px solid #FFD700;
}

.page-index-hot-games-btn-small:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

/* Why Choose Section */
.page-index-hot-games-why-choose {
  background-color: #1A202C;
}

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

.page-index-hot-games-why-choose-item {
  background-color: #242B38;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-index-hot-games-why-choose-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.page-index-hot-games-why-choose-item h3 {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-index-hot-games-why-choose-item p {
  font-size: 1em;
  color: #B0B0B0;
}

/* Promotions Section */
.page-index-hot-games-promotions {
  background-color: #242B38;
}

.page-index-hot-games-promo-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-index-hot-games-promo-card {
  background-color: #1A202C;
  border-radius: 12px;
  padding: 30px;
  max-width: 450px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-index-hot-games-promo-card img {
  max-width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-index-hot-games-promo-card h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-hot-games-promo-card p {
  font-size: 1em;
  color: #B0B0B0;
  margin-bottom: 25px;
}

/* APP Download Section */
.page-index-hot-games-app-download {
  background-color: #1A202C;
}

.page-index-hot-games-app-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
  text-align: left;
}

.page-index-hot-games-app-text {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.page-index-hot-games-app-text p {
  font-size: 1.1em;
  color: #E5E5E5;
  margin-bottom: 20px;
}

.page-index-hot-games-app-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-index-hot-games-app-text ul li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23FFD700"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #E5E5E5;
  font-size: 1em;
}

.page-index-hot-games-app-image {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
  text-align: center;
}

.page-index-hot-games-app-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-index-hot-games-btn-cta {
  background-color: #FFD700;
  color: #1A202C;
  border: 2px solid #FFD700;
  padding: 18px 45px;
  font-size: 1.2em;
  margin-top: 30px;
}

.page-index-hot-games-btn-cta:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-4px);
}

/* FAQ Section */
.page-index-hot-games-faq {
  background-color: #242B38;
}

.page-index-hot-games-faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-index-hot-games-faq-item {
  background-color: #1A202C;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-index-hot-games-faq-item h3 {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-index-hot-games-faq-item p {
  font-size: 1em;
  color: #B0B0B0;
}

/* Call to Action Section */
.page-index-hot-games-cta {
  background-color: #1A202C;
  padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-hot-games-hero-title {
    font-size: 3em;
  }
  .page-index-hot-games-hero-description {
    font-size: 1.1em;
  }
  .page-index-hot-games-section-title {
    font-size: 2.2em;
  }
  .page-index-hot-games-game-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-index-hot-games-app-content {
    flex-direction: column;
    text-align: center;
  }
  .page-index-hot-games-app-text, .page-index-hot-games-app-image {
    max-width: 100%;
  }
  .page-index-hot-games-app-text ul {
    text-align: left;
    display: inline-block; /* Center the list */
  }
}

@media (max-width: 768px) {
  .page-index-hot-games-hero {
    padding: 80px 15px;
  }
  .page-index-hot-games-hero-title {
    font-size: 2.5em;
  }
  .page-index-hot-games-hero-description {
    font-size: 1em;
  }
  .page-index-hot-games-hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-hot-games-btn {
    width: 100%;
    max-width: 300px;
  }
  .page-index-hot-games-section {
    padding: 40px 15px;
  }
  .page-index-hot-games-section-title {
    font-size: 1.8em;
  }
  .page-index-hot-games-game-grid {
    grid-template-columns: 1fr;
  }
  .page-index-hot-games-game-card img {
    height: 180px;
  }
  .page-index-hot-games-game-description {
    min-height: auto;
  }
  .page-index-hot-games-why-choose-grid {
    grid-template-columns: 1fr;
  }
  .page-index-hot-games-promo-cards {
    flex-direction: column;
    align-items: center;
  }
  .page-index-hot-games-promo-card {
    max-width: 100%;
  }
  .page-index-hot-games-app-text ul li {
    padding-left: 25px;
    background-size: 18px;
  }
  .page-index-hot-games-btn-cta {
    font-size: 1.1em;
    padding: 15px 35px;
  }
}

@media (max-width: 480px) {
  .page-index-hot-games-hero-title {
    font-size: 2em;
  }
  .page-index-hot-games-section-title {
    font-size: 1.6em;
  }
  .page-index-hot-games-btn {
    font-size: 1em;
    padding: 12px 25px;
  }
}