.page-index-featured-games {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark backgrounds */
  line-height: 1.6;
  background-color: #0F1640; /* Darker background for contrast with main color */
}

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

.page-index-featured-games__hero-section {
  background: linear-gradient(135deg, #1A237E, #0F1640);
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero text */
  position: relative;
  overflow: hidden;
}

.page-index-featured-games__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-featured-games__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #E0E0E0;
}

.page-index-featured-games__highlight {
  color: #FFD700; /* Gold for highlight */
}

.page-index-featured-games__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-index-featured-games__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  border: none;
}

.page-index-featured-games__button--primary {
  background-color: #FFD700; /* Gold for primary button */
  color: #1A237E; /* Dark blue text on gold */
}

.page-index-featured-games__button--primary:hover {
  background-color: #E5C100;
  transform: translateY(-3px);
}

.page-index-featured-games__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text on dark background */
  border: 2px solid #FFD700;
}

.page-index-featured-games__button--secondary:hover {
  background-color: #FFD700;
  color: #1A237E;
  transform: translateY(-3px);
}

.page-index-featured-games__section {
  padding: 80px 0;
  text-align: center;
}

.page-index-featured-games__section--bg-dark {
  background-color: #1A237E; /* Main color for dark sections */
  color: #E0E0E0;
}

.page-index-featured-games__section-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for section titles */
  font-weight: bold;
}

.page-index-featured-games__section--bg-dark .page-index-featured-games__section-title {
  color: #FFD700;
}

.page-index-featured-games__section-intro {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 60px;
  color: #E0E0E0;
}

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

.page-index-featured-games__feature-item {
  background-color: #0F1640; /* Dark background for feature items */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-index-featured-games__feature-item:hover {
  transform: translateY(-10px);
}

.page-index-featured-games__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.page-index-featured-games__feature-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for feature titles */
  margin-bottom: 15px;
}

.page-index-featured-games__feature-description {
  font-size: 1em;
  color: #B0B0B0;
}

.page-index-featured-games__game-category {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 80px;
  text-align: left;
  background-color: #1A237E; /* Main color for game categories */
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

.page-index-featured-games__category-content {
  flex: 1;
}

.page-index-featured-games__category-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-index-featured-games__category-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-featured-games__category-title {
  font-size: 2.2em;
  color: #FFD700; /* Gold for category titles */
  margin-bottom: 15px;
}

.page-index-featured-games__category-description {
  font-size: 1.1em;
  color: #E0E0E0;
  margin-bottom: 30px;
}

.page-index-featured-games__button--category {
  background-color: #FFD700;
  color: #1A237E;
}

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

.page-index-featured-games__promo-item {
  background-color: #0F1640; /* Dark background for promo items */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-index-featured-games__promo-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-index-featured-games__promo-description {
  font-size: 1em;
  color: #B0B0B0;
  margin-bottom: 25px;
}

.page-index-featured-games__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-index-featured-games__cta-center {
  margin-top: 60px;
}

.page-index-featured-games__step-by-step {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.page-index-featured-games__step-item {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background-color: #1A237E; /* Main color for step items */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
}

.page-index-featured-games__step-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: #FFD700; /* Gold for step numbers */
  color: #1A237E;
  border-radius: 50%;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-index-featured-games__step-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-index-featured-games__step-description {
  color: #B0B0B0;
}

.page-index-featured-games__mobile-app-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
}

.page-index-featured-games__qr-code {
  width: 180px;
  height: 180px;
  background-color: #FFFFFF;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-index-featured-games__app-links {
  text-align: center;
}

.page-index-featured-games__app-text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-index-featured-games__button--app {
  background-color: #FFD700;
  color: #1A237E;
  margin: 0 10px 15px;
}

.page-index-featured-games__faq-list {
  margin-top: 50px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-featured-games__faq-item {
  background-color: #1A237E; /* Main color for FAQ items */
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-featured-games__faq-question {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
}

.page-index-featured-games__faq-answer {
  font-size: 1em;
  color: #B0B0B0;
  display: none; /* Hidden by default, JS will toggle */
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-featured-games__main-title {
    font-size: 2.8em;
  }
  .page-index-featured-games__section-title {
    font-size: 2.2em;
  }
  .page-index-featured-games__game-category {
    flex-direction: column;
    text-align: center;
  }
  .page-index-featured-games__game-category--reverse {
    flex-direction: column;
  }
  .page-index-featured-games__category-content {
    order: 2;
  }
  .page-index-featured-games__category-image-wrapper {
    order: 1;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-index-featured-games__hero-section {
    padding: 80px 0;
  }
  .page-index-featured-games__main-title {
    font-size: 2.2em;
  }
  .page-index-featured-games__hero-description {
    font-size: 1.1em;
  }
  .page-index-featured-games__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-featured-games__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-index-featured-games__section {
    padding: 60px 0;
  }
  .page-index-featured-games__section-title {
    font-size: 1.8em;
  }
  .page-index-featured-games__feature-grid, .page-index-featured-games__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-index-featured-games__step-by-step {
    flex-direction: column;
    align-items: center;
  }
  .page-index-featured-games__step-item {
    max-width: 90%;
  }
  .page-index-featured-games__app-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .page-index-featured-games__button--app {
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .page-index-featured-games__main-title {
    font-size: 1.8em;
  }
  .page-index-featured-games__hero-description {
    font-size: 1em;
  }
  .page-index-featured-games__section-title {
    font-size: 1.6em;
  }
  .page-index-featured-games__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-featured-games__category-title {
    font-size: 1.8em;
  }
  .page-index-featured-games__promo-title, .page-index-featured-games__feature-title {
    font-size: 1.5em;
  }
  .page-index-featured-games__faq-question {
    font-size: 1.3em;
  }
}