/* style/index-hot-games-recommendation.css */
.page-index-hot-games-recommendation {
  font-family: 'Arial', sans-serif;
  color: #f5f5f5;
  background-color: #0A2E59;
  line-height: 1.6;
}

.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, #0A2E59 0%, #304f7c 100%);
  padding: 100px 0;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

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

.page-index-hot-games-recommendation__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-index-hot-games-recommendation__cta-button {
  display: inline-block;
  background-color: #FFA500;
  color: #0A2E59;
  padding: 15px 30px;
  border-radius: 50px;
  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-recommendation__cta-button:hover {
  background-color: #ffb733;
  transform: translateY(-3px);
}

.page-index-hot-games-recommendation__section-title {
  font-size: 2.5em;
  color: #FFA500;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 20px;
  position: relative;
}

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

.page-index-hot-games-recommendation__section-subtitle {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #cccccc;
}

.page-index-hot-games-recommendation__featured-games {
  padding: 60px 0;
  background-color: #0A2E59;
}

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

.page-index-hot-games-recommendation__game-card {
  background-color: #1a3e66;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  padding-bottom: 25px;
}

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

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

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

.page-index-hot-games-recommendation__game-description {
  font-size: 0.95em;
  color: #e0e0e0;
  padding: 0 20px;
  margin-bottom: 25px;
}

.page-index-hot-games-recommendation__game-button {
  display: inline-block;
  background-color: #FFA500;
  color: #0A2E59;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-index-hot-games-recommendation__game-button:hover {
  background-color: #ffb733;
  transform: translateY(-2px);
}

.page-index-hot-games-recommendation__why-y088 {
  background-color: #0A2E59;
  padding: 80px 0;
  color: #f5f5f5;
}

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

.page-index-hot-games-recommendation__advantage-item {
  background-color: #1a3e66;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-index-hot-games-recommendation__advantage-icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: invert(1) drop-shadow(0 0 5px #FFA500);
}

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

.page-index-hot-games-recommendation__advantage-item p {
  font-size: 0.95em;
  color: #e0e0e0;
}

.page-index-hot-games-recommendation__cta-section {
  background-color: #1a3e66;
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
}

.page-index-hot-games-recommendation__cta-title {
  font-size: 2.8em;
  color: #FFA500;
  margin-bottom: 20px;
}

.page-index-hot-games-recommendation__cta-description {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px;
}

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

.page-index-hot-games-recommendation__cta-button--primary {
  background-color: #FFA500;
  color: #0A2E59;
}

.page-index-hot-games-recommendation__cta-button--primary:hover {
  background-color: #ffb733;
}

.page-index-hot-games-recommendation__cta-button--secondary {
  background-color: transparent;
  border: 2px solid #FFA500;
  color: #FFA500;
}

.page-index-hot-games-recommendation__cta-button--secondary:hover {
  background-color: #FFA500;
  color: #0A2E59;
}

.page-index-hot-games-recommendation__blog-section {
  padding: 60px 0;
  background-color: #0A2E59;
}

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

.page-index-hot-games-recommendation__blog-card {
  background-color: #1a3e66;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-hot-games-recommendation__blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.page-index-hot-games-recommendation__blog-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 3px solid #FFA500;
}

.page-index-hot-games-recommendation__blog-title {
  font-size: 1.4em;
  color: #FFA500;
  margin: 20px 20px 10px;
  min-height: 60px;
}

.page-index-hot-games-recommendation__blog-title a {
  color: #FFA500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index-hot-games-recommendation__blog-title a:hover {
  color: #ffb733;
}

.page-index-hot-games-recommendation__blog-excerpt {
  font-size: 0.9em;
  color: #e0e0e0;
  padding: 0 20px;
  margin-bottom: 20px;
}

.page-index-hot-games-recommendation__read-more {
  display: inline-block;
  color: #FFA500;
  text-decoration: none;
  font-weight: bold;
  margin-left: 20px;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.page-index-hot-games-recommendation__read-more:hover {
  color: #ffb733;
  text-decoration: underline;
}

.page-index-hot-games-recommendation__about-y088 {
  background-color: #0A2E59;
  padding: 80px 0;
  color: #f5f5f5;
  text-align: center;
}

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

.page-index-hot-games-recommendation__about-y088 p {
  max-width: 900px;
  margin: 20px auto;
  font-size: 1.1em;
  line-height: 1.8;
  text-align: justify;
}

.page-index-hot-games-recommendation__faq-section {
  background-color: #1a3e66;
  padding: 80px 0;
  color: #f5f5f5;
}

.page-index-hot-games-recommendation__faq-item {
  background-color: #0A2E59;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-hot-games-recommendation__faq-question {
  font-size: 1.4em;
  color: #FFA500;
  margin-bottom: 15px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

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

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

.page-index-hot-games-recommendation__faq-answer {
  font-size: 1em;
  color: #e0e0e0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
  opacity: 0;
}

.page-index-hot-games-recommendation__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  opacity: 1;
  padding-top: 10px;
}

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

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

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

  .page-index-hot-games-recommendation__cta-title {
    font-size: 2em;
  }

  .page-index-hot-games-recommendation__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-index-hot-games-recommendation__cta-button {
    width: 80%;
    margin: 0 auto;
  }
}

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

  .page-index-hot-games-recommendation__hero-description,
  .page-index-hot-games-recommendation__section-subtitle,
  .page-index-hot-games-recommendation__cta-description {
    font-size: 1em;
  }

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

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

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

  .page-index-hot-games-recommendation__blog-title {
    font-size: 1.2em;
  }

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

  .page-index-hot-games-recommendation__cta-button {
    width: 90%;
  }
}