/* style/index-hot-games-recommendation.css */
.page-index-hot-games-recommendation {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0F163D; /* Slightly lighter than primary for main background */
}

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

.page-index-hot-games-recommendation__hero-section {
  background: linear-gradient(135deg, #1A237E, #0F163D);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-hot-games-recommendation__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-hot-games-recommendation__hero-subtitle {
  font-size: 1.3em;
  color: #CCCCCC;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.page-index-hot-games-recommendation__hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-index-hot-games-recommendation__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-recommendation__btn--primary {
  background-color: #FFD700;
  color: #1A237E;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

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

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

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

.page-index-hot-games-recommendation__btn--outline {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 5px;
}

.page-index-hot-games-recommendation__btn--outline:hover {
  background-color: #FFD700;
  color: #1A237E;
}

.page-index-hot-games-recommendation__btn--small {
  padding: 8px 15px;
  font-size: 0.9em;
  border-radius: 5px;
  background-color: #FFD700;
  color: #1A237E;
}

.page-index-hot-games-recommendation__btn--small:hover {
  background-color: #E5C100;
}

.page-index-hot-games-recommendation__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  padding-top: 60px;
  position: relative;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

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

.page-index-hot-games-recommendation__section-description {
  font-size: 1.1em;
  color: #CCCCCC;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* About ku77 Section */
.page-index-hot-games-recommendation__about-ku77-section {
  background-color: #1A237E;
  padding: 80px 0;
}

.page-index-hot-games-recommendation__about-ku77-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-index-hot-games-recommendation__text-content {
  flex: 1;
}

.page-index-hot-games-recommendation__text-content h2 {
  text-align: left;
  padding-top: 0;
  margin-bottom: 20px;
}

.page-index-hot-games-recommendation__text-content h2::after {
  margin: 10px 0 0 0;
}

.page-index-hot-games-recommendation__text-content p {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-index-hot-games-recommendation__image-wrapper {
  flex: 1;
  text-align: center;
}

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

/* Games Overview Section */
.page-index-hot-games-recommendation__games-overview-section {
  padding: 80px 0;
  background-color: #0F163D;
}

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

.page-index-hot-games-recommendation__game-card {
  background-color: #1A237E;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 20px;
}

.page-index-hot-games-recommendation__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.page-index-hot-games-recommendation__game-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
}

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

.page-index-hot-games-recommendation__game-card-description {
  font-size: 0.95em;
  color: #CCCCCC;
  line-height: 1.6;
  padding: 0 20px;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Why Choose ku77 Section */
.page-index-hot-games-recommendation__why-choose-ku77-section {
  background-color: #1A237E;
  padding: 80px 0;
}

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

.page-index-hot-games-recommendation__feature-item {
  background-color: #0F163D;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-index-hot-games-recommendation__feature-item:hover {
  transform: translateY(-5px);
  background-color: #212B63; /* Slightly lighter primary on hover */
}

.page-index-hot-games-recommendation__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

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

.page-index-hot-games-recommendation__feature-description {
  font-size: 1em;
  color: #CCCCCC;
  line-height: 1.6;
}

/* Download App Section */
.page-index-hot-games-recommendation__download-app-section {
  padding: 80px 0;
  background-color: #0F163D;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
}

.page-index-hot-games-recommendation__download-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  text-align: left;
}

.page-index-hot-games-recommendation__download-content h2 {
  text-align: left;
  padding-top: 0;
  margin-bottom: 20px;
}

.page-index-hot-games-recommendation__download-content h2::after {
  margin: 10px 0 0 0;
}

.page-index-hot-games-recommendation__download-content p {
  font-size: 1.1em;
  color: #E0E0E0;
  line-height: 1.7;
  margin-bottom: 30px;
}

.page-index-hot-games-recommendation__download-cta-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.page-index-hot-games-recommendation__app-image-wrapper {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
}

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

/* Responsible Gambling Section */
.page-index-hot-games-recommendation__responsible-gambling-section {
  background-color: #1A237E;
  padding: 80px 0;
  text-align: center;
}

.page-index-hot-games-recommendation__responsible-gambling-section ul {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 800px;
}

.page-index-hot-games-recommendation__responsible-gambling-section ul li {
  background-color: #0F163D;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #CCCCCC;
  text-align: left;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-index-hot-games-recommendation__responsible-gambling-section ul li p {
  margin: 0;
  color: #CCCCCC;
}

/* CTA Bottom Section */
.page-index-hot-games-recommendation__cta-bottom-section {
  background-color: #0F163D;
  padding: 80px 0;
  text-align: center;
}

.page-index-hot-games-recommendation__cta-bottom-section .page-index-hot-games-recommendation__hero-cta-group {
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-hot-games-recommendation__hero-title {
    font-size: 2.8em;
  }

  .page-index-hot-games-recommendation__section-title {
    font-size: 2.2em;
  }

  .page-index-hot-games-recommendation__about-ku77-content {
    flex-direction: column;
  }

  .page-index-hot-games-recommendation__text-content h2 {
    text-align: center;
  }
  .page-index-hot-games-recommendation__text-content h2::after {
    margin: 10px auto 0;
  }
  .page-index-hot-games-recommendation__text-content p {
    text-align: center;
  }

  .page-index-hot-games-recommendation__image-wrapper {
    margin-top: 40px;
  }

  .page-index-hot-games-recommendation__download-app-section {
    flex-direction: column;
  }

  .page-index-hot-games-recommendation__download-content,
  .page-index-hot-games-recommendation__app-image-wrapper {
    max-width: 100%;
    text-align: center;
  }

  .page-index-hot-games-recommendation__download-content h2 {
    text-align: center;
  }
  .page-index-hot-games-recommendation__download-content h2::after {
    margin: 10px auto 0;
  }
  .page-index-hot-games-recommendation__download-content p {
    text-align: center;
  }

  .page-index-hot-games-recommendation__download-cta-group {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-index-hot-games-recommendation__hero-title {
    font-size: 2.2em;
  }

  .page-index-hot-games-recommendation__hero-subtitle {
    font-size: 1.1em;
  }

  .page-index-hot-games-recommendation__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-index-hot-games-recommendation__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-index-hot-games-recommendation__section-title {
    font-size: 1.8em;
  }

  .page-index-hot-games-recommendation__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-index-hot-games-recommendation__game-categories,
  .page-index-hot-games-recommendation__features-grid {
    grid-template-columns: 1fr;
  }

  .page-index-hot-games-recommendation__game-card-title {
    font-size: 1.5em;
  }

  .page-index-hot-games-recommendation__feature-title {
    font-size: 1.3em;
  }
}