.page-index-featured-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A192F; /* Main dark blue background */
}

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

.page-index-featured-games__hero {
  background: linear-gradient(135deg, #0A192F 0%, #1a2a47 100%); /* Dark blue gradient */
  color: #FFFFFF; /* White text */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-featured-games__hero::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 215, 0, 0.1); /* Subtle gold accent */
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}

.page-index-featured-games__hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: rgba(255, 215, 0, 0.15); /* Subtle gold accent */
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
}

.page-index-featured-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  font-weight: bold;
  z-index: 1;
  position: relative;
}

.page-index-featured-games__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #E0E0E0; /* Light gray for subtitle */
  z-index: 1;
  position: relative;
}

.page-index-featured-games__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  z-index: 1;
  position: relative;
}

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

.page-index-featured-games__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark blue text on gold */
  border: 2px solid #FFD700;
}

.page-index-featured-games__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

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

.page-index-featured-games__btn--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.1);
}

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

.page-index-featured-games__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

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

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

.page-index-featured-games__section-description {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #C0C0C0; /* Lighter gray for descriptions */
}

.page-index-featured-games__overview {
  background-color: #1a2a47; /* Slightly lighter dark blue */
}

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

.page-index-featured-games__feature-item {
  background-color: #0A192F; /* Main dark blue */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-featured-games__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-index-featured-games__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

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

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

.page-index-featured-games__game-categories {
  background-color: #0A192F;
}

.page-index-featured-games__category-card {
  display: flex;
  align-items: center;
  background-color: #1a2a47; /* Slightly lighter dark blue */
  border-radius: 12px;
  margin-bottom: 40px;
  text-align: left;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.page-index-featured-games__category-card:nth-child(even) {
  flex-direction: row-reverse;
}

.page-index-featured-games__category-image {
  width: 40%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}

.page-index-featured-games__category-content {
  width: 60%;
  padding: 40px;
}

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

.page-index-featured-games__category-text {
  font-size: 1.1em;
  color: #C0C0C0;
  margin-bottom: 25px;
}

.page-index-featured-games__new-games {
  background-color: #1a2a47;
}

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

.page-index-featured-games__game-item {
  background-color: #0A192F;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-featured-games__game-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-index-featured-games__game-thumbnail {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-index-featured-games__game-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-index-featured-games__game-description {
  font-size: 0.95em;
  color: #C0C0C0;
  margin-bottom: 20px;
  min-height: 50px; /* Ensure consistent height */
}

.page-index-featured-games__promotions {
  background-color: #0A192F;
}

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

.page-index-featured-games__promo-item {
  background-color: #1a2a47;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-featured-games__promo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-index-featured-games__promo-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-index-featured-games__promo-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-index-featured-games__promo-text {
  font-size: 0.95em;
  color: #C0C0C0;
  margin-bottom: 20px;
  min-height: 50px; /* Ensure consistent height */
}

.page-index-featured-games__cta {
  background-color: #1a2a47;
  padding: 100px 0;
}

.page-index-featured-games__cta-note {
  margin-top: 30px;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-index-featured-games__cta-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-index-featured-games__cta-link:hover {
  text-decoration: underline;
}

.page-index-featured-games__faq {
  background-color: #0A192F;
  text-align: left;
}

.page-index-featured-games__faq-item {
  background-color: #1a2a47;
  border-radius: 10px;
  padding: 25px 30px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-index-featured-games__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  padding-right: 30px; /* Space for arrow */
}

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

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

.page-index-featured-games__faq-answer {
  font-size: 1em;
  color: #C0C0C0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.page-index-featured-games__faq-answer.active {
  max-height: 200px; /* Adjust as needed for content */
  padding-top: 15px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-index-featured-games__hero-title {
    font-size: 2.8em;
  }
  .page-index-featured-games__hero-subtitle {
    font-size: 1.1em;
  }
  .page-index-featured-games__section-title {
    font-size: 2.2em;
  }
  .page-index-featured-games__category-card {
    flex-direction: column;
    text-align: center;
  }
  .page-index-featured-games__category-card:nth-child(even) {
    flex-direction: column;
  }
  .page-index-featured-games__category-image {
    width: 100%;
    border-bottom-left-radius: 0;
    border-top-right-radius: 12px;
  }
  .page-index-featured-games__category-content {
    width: 100%;
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .page-index-featured-games__hero {
    padding: 80px 0;
  }
  .page-index-featured-games__hero-title {
    font-size: 2.2em;
  }
  .page-index-featured-games__hero-subtitle {
    font-size: 1em;
  }
  .page-index-featured-games__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-featured-games__btn {
    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__section-description {
    font-size: 0.95em;
  }
  .page-index-featured-games__feature-title, .page-index-featured-games__game-title, .page-index-featured-games__promo-title {
    font-size: 1.3em;
  }
  .page-index-featured-games__category-title {
    font-size: 1.8em;
  }
  .page-index-featured-games__faq-question {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-index-featured-games__hero-title {
    font-size: 1.8em;
  }
  .page-index-featured-games__btn {
    width: 90%;
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-featured-games__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-index-featured-games__section-title {
    font-size: 1.6em;
  }
  .page-index-featured-games__category-content {
    padding: 20px;
  }
  .page-index-featured-games__category-title {
    font-size: 1.5em;
  }
  .page-index-featured-games__game-item, .page-index-featured-games__promo-item {
    padding: 20px;
  }
  .page-index-featured-games__game-thumbnail, .page-index-featured-games__promo-image {
    height: 150px;
  }
  .page-index-featured-games__faq-question {
    font-size: 1.1em;
  }
}