.page-index-popular-games-recommendation {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

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

.page-index-popular-games-recommendation__hero-section {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-popular-games-recommendation__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.page-index-popular-games-recommendation__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-index-popular-games-recommendation__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1.1em;
}

.page-index-popular-games-recommendation__btn--primary {
  background-color: #ffc107;
  color: #333;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

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

.page-index-popular-games-recommendation__btn--secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  margin-left: 20px;
}

.page-index-popular-games-recommendation__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.page-index-popular-games-recommendation__section {
  padding: 60px 0;
}

.page-index-popular-games-recommendation__section-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-index-popular-games-recommendation__intro .page-index-popular-games-recommendation__text-content {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: #555;
}

.page-index-popular-games-recommendation__game-categories {
  background-color: #fff;
  padding: 80px 0;
}

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

.page-index-popular-games-recommendation__game-card {
  background-color: #f8f9fa;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
}

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

.page-index-popular-games-recommendation__game-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-index-popular-games-recommendation__game-card-title {
  font-size: 1.8em;
  color: #007bff;
  padding: 20px;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-index-popular-games-recommendation__game-card-description {
  padding: 0 20px;
  color: #555;
  flex-grow: 1;
  font-size: 0.95em;
}

.page-index-popular-games-recommendation__game-features {
  list-style: none;
  padding: 0 20px;
  margin-top: 15px;
  margin-bottom: 20px;
}

.page-index-popular-games-recommendation__game-features li {
  margin-bottom: 8px;
  color: #444;
  display: flex;
  align-items: center;
  font-size: 0.9em;
}

.page-index-popular-games-recommendation__icon {
  color: #ffc107;
  margin-right: 10px;
  font-size: 0.7em;
  line-height: 1;
}

.page-index-popular-games-recommendation__game-card .page-index-popular-games-recommendation__btn {
  margin: 20px;
  width: calc(100% - 40px);
  text-align: center;
}

.page-index-popular-games-recommendation__why-choose {
  background-color: #e9f5ff;
  padding: 80px 0;
}

.page-index-popular-games-recommendation__why-choose-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-index-popular-games-recommendation__why-choose-text {
  flex: 1;
  min-width: 300px;
}

.page-index-popular-games-recommendation__why-choose-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

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

.page-index-popular-games-recommendation__feature-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-index-popular-games-recommendation__feature-list li {
  background-color: #fff;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-left: 5px solid #007bff;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.05em;
  color: #333;
}

.page-index-popular-games-recommendation__feature-list li strong {
  color: #0056b3;
}

.page-index-popular-games-recommendation__how-to-join {
  padding: 80px 0;
}

.page-index-popular-games-recommendation__steps-list {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
}

.page-index-popular-games-recommendation__steps-list li {
  counter-increment: step-counter;
  margin-bottom: 25px;
  padding-left: 60px;
  position: relative;
  font-size: 1.1em;
  color: #444;
}

.page-index-popular-games-recommendation__steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #007bff;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.page-index-popular-games-recommendation__steps-list li strong {
  color: #0056b3;
}

.page-index-popular-games-recommendation__cta-group {
  text-align: center;
  margin-top: 40px;
}

.page-index-popular-games-recommendation__faq {
  background-color: #f0f8ff;
  padding: 80px 0;
}

.page-index-popular-games-recommendation__faq-item {
  background-color: #fff;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.page-index-popular-games-recommendation__faq-question {
  font-size: 1.4em;
  color: #007bff;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

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

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

.page-index-popular-games-recommendation__faq-answer {
  font-size: 1.05em;
  color: #555;
  padding-top: 10px;
  border-top: 1px solid #eee;
  display: none;
}

.page-index-popular-games-recommendation__faq-answer.active {
  display: block;
}

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

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

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

  .page-index-popular-games-recommendation__btn--secondary {
    margin-left: 10px;
    margin-top: 15px;
  }

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

  .page-index-popular-games-recommendation__intro .page-index-popular-games-recommendation__text-content {
    font-size: 1em;
  }

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

  .page-index-popular-games-recommendation__game-card-description {
    font-size: 0.9em;
  }

  .page-index-popular-games-recommendation__why-choose-content {
    flex-direction: column;
  }

  .page-index-popular-games-recommendation__why-choose-text, .page-index-popular-games-recommendation__why-choose-image {
    min-width: unset;
    width: 100%;
  }

  .page-index-popular-games-recommendation__steps-list li {
    padding-left: 50px;
    font-size: 1em;
  }

  .page-index-popular-games-recommendation__steps-list li::before {
    width: 35px;
    height: 35px;
    font-size: 1.2em;
  }

  .page-index-popular-games-recommendation__faq-question {
    font-size: 1.2em;
  }
}

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

  .page-index-popular-games-recommendation__hero-subtitle {
    font-size: 0.9em;
  }

  .page-index-popular-games-recommendation__btn {
    padding: 10px 20px;
    font-size: 0.9em;
    margin: 10px 0;
  }

  .page-index-popular-games-recommendation__btn--secondary {
    margin-left: 0;
  }

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

  .page-index-popular-games-recommendation__game-card-title {
    font-size: 1.3em;
  }

  .page-index-popular-games-recommendation__faq-question {
    font-size: 1.1em;
  }
}