.page-index-featured-games {
  font-family: 'Arial', sans-serif;
  color: #333;
  background-color: #f8f8f8;
}

.page-index-featured-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-featured-games__section-title {
  color: #0A2342;
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-index-featured-games__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-index-featured-games__section-description {
  text-align: center;
  font-size: 1.1em;
  color: #555;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-featured-games__text-content {
  line-height: 1.8;
  margin-bottom: 15px;
  color: #444;
}

.page-index-featured-games__btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.page-index-featured-games__btn--primary {
  background-color: #FFD700;
  color: #0A2342;
  border: 2px solid #FFD700;
}

.page-index-featured-games__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-index-featured-games__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-index-featured-games__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2342;
}

/* Hero Section */
.page-index-featured-games__hero-section {
  background: linear-gradient(135deg, #0A2342 0%, #1a3a60 100%);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.page-index-featured-games__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.15;
}

.page-index-featured-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-index-featured-games__hero-section .page-index-featured-games__container {
  position: relative;
  z-index: 1;
}

.page-index-featured-games__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  color: #fff;
}

.page-index-featured-games__hero-title .highlight {
  color: #FFD700;
}

.page-index-featured-games__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-index-featured-games__hero-actions .page-index-featured-games__btn {
  margin: 0 10px;
  min-width: 180px;
}

/* Introduction Section */
.page-index-featured-games__introduction-section {
  padding: 80px 0;
  background-color: #fff;
}

/* Games Section */
.page-index-featured-games__games-section {
  padding: 80px 0;
  background-color: #f0f2f5;
}

.page-index-featured-games__game-category {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-index-featured-games__game-category--reverse {
  flex-direction: row-reverse;
}

.page-index-featured-games__game-image-wrapper {
  flex: 1;
  min-width: 40%;
  height: 400px;
}

.page-index-featured-games__game-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-index-featured-games__game-content {
  flex: 1;
  padding: 40px;
}

.page-index-featured-games__game-title {
  color: #0A2342;
  font-size: 2em;
  margin-bottom: 20px;
}

.page-index-featured-games__game-content .page-index-featured-games__btn {
  margin-top: 20px;
}

/* Benefits Section */
.page-index-featured-games__benefits-section {
  padding: 80px 0;
  background-color: #0A2342;
  color: #fff;
}

.page-index-featured-games__benefits-section .page-index-featured-games__section-title {
  color: #FFD700;
}

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

.page-index-featured-games__benefit-item {
  background-color: #1a3a60;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-index-featured-games__benefit-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(100%) saturate(700%) hue-rotate(340deg) brightness(100%) contrast(100%); /* Adjust to golden color */
}

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

.page-index-featured-games__benefit-item .page-index-featured-games__text-content {
  color: #e0e0e0;
}

/* CTA Section */
.page-index-featured-games__cta-section {
  padding: 80px 0;
  background-color: #fff;
  text-align: center;
}

.page-index-featured-games__cta-actions .page-index-featured-games__btn {
  margin: 0 10px;
  min-width: 200px;
}

/* FAQ Section */
.page-index-featured-games__faq-section {
  padding: 80px 0;
  background-color: #f0f2f5;
}

.page-index-featured-games__faq-item {
  background-color: #fff;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-index-featured-games__faq-question {
  color: #0A2342;
  font-size: 1.4em;
  margin-bottom: 15px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-index-featured-games__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #FFD700;
}

.page-index-featured-games__faq-question.active::after {
  content: '-';
}

.page-index-featured-games__faq-answer {
  color: #555;
  line-height: 1.7;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 15px;
}

.page-index-featured-games__faq-answer.active {
  display: block;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-featured-games__hero-title {
    font-size: 3em;
  }
  .page-index-featured-games__hero-subtitle {
    font-size: 1.2em;
  }
  .page-index-featured-games__game-category {
    flex-direction: column;
  }
  .page-index-featured-games__game-category--reverse {
    flex-direction: column;
  }
  .page-index-featured-games__game-image-wrapper {
    min-width: 100%;
    height: 300px;
  }
  .page-index-featured-games__game-content {
    padding: 30px;
  }
  .page-index-featured-games__benefit-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-index-featured-games__hero-section {
    padding: 80px 0;
  }
  .page-index-featured-games__hero-title {
    font-size: 2.5em;
  }
  .page-index-featured-games__hero-subtitle {
    font-size: 1.1em;
  }
  .page-index-featured-games__hero-actions .page-index-featured-games__btn {
    margin: 10px 0;
    width: 80%;
  }
  .page-index-featured-games__section-title {
    font-size: 2em;
  }
  .page-index-featured-games__section-description {
    font-size: 1em;
  }
  .page-index-featured-games__game-title {
    font-size: 1.8em;
  }
  .page-index-featured-games__benefit-item {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page-index-featured-games__hero-title {
    font-size: 2em;
  }
  .page-index-featured-games__hero-subtitle {
    font-size: 1em;
  }
  .page-index-featured-games__section-title {
    font-size: 1.8em;
  }
  .page-index-featured-games__game-content {
    padding: 20px;
  }
  .page-index-featured-games__cta-actions .page-index-featured-games__btn {
    width: 90%;
  }
  .page-index-featured-games__faq-question {
    font-size: 1.2em;
  }
}