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

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

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

.page-index-popular-games-recommendation__section:nth-child(even) {
  background-color: #f8f8f8;
}

.page-index-popular-games-recommendation__hero-section {
  background: linear-gradient(135deg, #0A2463, #3A5B9F);
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-index-popular-games-recommendation__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 0;
}

.page-index-popular-games-recommendation__hero-section .page-index-popular-games-recommendation__container {
  position: relative;
  z-index: 1;
}

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

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

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

.page-index-popular-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-popular-games-recommendation__btn--primary {
  background-color: #E3B505;
  color: #0A2463;
  box-shadow: 0 4px 15px rgba(227, 181, 5, 0.4);
}

.page-index-popular-games-recommendation__btn--primary:hover {
  background-color: #ffda47;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(227, 181, 5, 0.6);
}

.page-index-popular-games-recommendation__btn--secondary {
  background-color: transparent;
  color: #E3B505;
  border: 2px solid #E3B505;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-popular-games-recommendation__btn--secondary:hover {
  background-color: rgba(227, 181, 5, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(227, 181, 5, 0.3);
}

.page-index-popular-games-recommendation__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #0A2463;
  font-weight: bold;
}

.page-index-popular-games-recommendation__section-intro {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #555;
}

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

.page-index-popular-games-recommendation__feature-item,
.page-index-popular-games-recommendation__promo-item,
.page-index-popular-games-recommendation__step-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  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;
  align-items: center;
  text-align: center;
}

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

.page-index-popular-games-recommendation__feature-icon,
.page-index-popular-games-recommendation__promo-icon,
.page-index-popular-games-recommendation__step-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-index-popular-games-recommendation__feature-title,
.page-index-popular-games-recommendation__promo-title,
.page-index-popular-games-recommendation__step-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-popular-games-recommendation__feature-text,
.page-index-popular-games-recommendation__promo-text,
.page-index-popular-games-recommendation__step-text {
  font-size: 1em;
  color: #666;
}

.page-index-popular-games-recommendation__game-category {
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  text-align: left;
}

.page-index-popular-games-recommendation__category-title {
  font-size: 2em;
  color: #0A2463;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-popular-games-recommendation__category-description {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 25px;
}

.page-index-popular-games-recommendation__category-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

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

.page-index-popular-games-recommendation__game-list li {
  font-size: 1.05em;
  color: #444;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.page-index-popular-games-recommendation__game-list li::before {
  content: '✔';
  color: #E3B505;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-index-popular-games-recommendation__cta-center {
  margin-top: 50px;
}

.page-index-popular-games-recommendation__app-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  flex-wrap: wrap;
  gap: 40px;
}

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

.page-index-popular-games-recommendation__app-image-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-index-popular-games-recommendation__app-benefits {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  margin-bottom: 30px;
}

.page-index-popular-games-recommendation__app-benefits li {
  font-size: 1.05em;
  color: #444;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.page-index-popular-games-recommendation__app-benefits li::before {
  content: '★';
  color: #E3B505;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-index-popular-games-recommendation__responsible-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-index-popular-games-recommendation__responsible-list li {
  font-size: 1.1em;
  color: #444;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.page-index-popular-games-recommendation__responsible-list li::before {
  content: '•';
  color: #0A2463;
  position: absolute;
  left: 0;
  font-size: 1.5em;
  line-height: 1;
}

.page-index-popular-games-recommendation__responsible-note {
  font-style: italic;
  color: #777;
  margin-top: 30px;
  font-size: 1em;
}

.page-index-popular-games-recommendation__responsible-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: contain;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-index-popular-games-recommendation__faq-item {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  text-align: left;
  transition: box-shadow 0.3s ease;
}

.page-index-popular-games-recommendation__faq-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.page-index-popular-games-recommendation__faq-question {
  font-size: 1.3em;
  color: #0A2463;
  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: #E3B505;
  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: 1em;
  color: #666;
  margin-top: 15px;
  display: none;
  /* Initially hidden */
}

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

.page-index-popular-games-recommendation__final-cta .page-index-popular-games-recommendation__cta-group {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

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

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

  .page-index-popular-games-recommendation__hero-description,
  .page-index-popular-games-recommendation__section-intro {
    font-size: 1.1em;
  }

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

  .page-index-popular-games-recommendation__app-image-wrapper {
    order: -1; /* Image above text on smaller screens */
    margin-bottom: 30px;
  }
}

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

  .page-index-popular-games-recommendation__hero-description {
    font-size: 1em;
  }

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

  .page-index-popular-games-recommendation__btn {
    width: 80%;
    margin: 0 auto;
  }

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

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

  .page-index-popular-games-recommendation__game-category {
    padding: 30px;
  }

  .page-index-popular-games-recommendation__category-title {
    font-size: 1.6em;
  }
}

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

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

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

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

  .page-index-popular-games-recommendation__feature-item,
  .page-index-popular-games-recommendation__promo-item,
  .page-index-popular-games-recommendation__step-item {
    padding: 20px;
  }

  .page-index-popular-games-recommendation__feature-title,
  .page-index-popular-games-recommendation__promo-title,
  .page-index-popular-games-recommendation__step-title {
    font-size: 1.3em;
  }

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