.page-index-featured-games {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #e5dfd3; /* Light text for dark background */
  background-color: #1A202C; /* Main dark background */
  line-height: 1.6;
}

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

.page-index-featured-games__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1A202C 0%, #3a475a 100%); /* Gradient background */
  color: #fff;
  gap: 40px;
}

.page-index-featured-games__hero-content {
  max-width: 800px;
  z-index: 1;
}

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

.page-index-featured-games__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #ccc;
}

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

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

.page-index-featured-games__btn--primary {
  background-color: #FFD700; /* Accent color for primary buttons */
  color: #1A202C; /* Dark text on accent background */
  border: 2px solid #FFD700;
}

.page-index-featured-games__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

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

.page-index-featured-games__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-2px);
}

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

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

.page-index-featured-games__hero-image-wrapper {
  margin-top: 40px;
  width: 100%;
  max-width: 900px;
}

.page-index-featured-games__hero-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-index-featured-games__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Accent color for section titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  font-weight: 700;
}

.page-index-featured-games__section-title .highlight {
  color: #fff;
}

.page-index-featured-games__introduction,
.page-index-featured-games__promotions,
.page-index-featured-games__benefits,
.page-index-featured-games__guide,
.page-index-featured-games__strategies,
.page-index-featured-games__responsible-gambling,
.page-index-featured-games__faq,
.page-index-featured-games__cta-final {
  padding: 60px 0;
  background-color: #1A202C;
}

.page-index-featured-games__games-showcase {
  padding: 60px 0;
  background-color: #2a3442; /* Slightly lighter dark background for contrast */
}

.page-index-featured-games__text {
  font-size: 1.1em;
  color: #e5dfd3;
  margin-bottom: 20px;
  text-align: left;
}

.page-index-featured-games__text--center {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-index-featured-games__game-card {
  background-color: #1A202C;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-index-featured-games__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}

.page-index-featured-games__game-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 4px solid #FFD700;
  margin-bottom: 20px;
}

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

.page-index-featured-games__game-card-description {
  font-size: 1em;
  color: #ccc;
  margin-bottom: 25px;
  padding: 0 15px;
  flex-grow: 1;
}

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

.page-index-featured-games__promo-card {
  background-color: #2a3442;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  padding-bottom: 30px;
}

.page-index-featured-games__promo-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 25px;
  border-bottom: 4px solid #FFD700;
}

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

.page-index-featured-games__promo-description {
  font-size: 1.1em;
  color: #ccc;
  margin-bottom: 30px;
  padding: 0 20px;
}

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

.page-index-featured-games__benefit-item {
  background-color: #2a3442;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

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

.page-index-featured-games__benefit-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700); /* Glow effect for icons */
}

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

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

.page-index-featured-games__guide-list {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  margin-top: 30px;
}

.page-index-featured-games__guide-list li {
  counter-increment: step-counter;
  margin-bottom: 25px;
  padding-left: 50px;
  position: relative;
  font-size: 1.1em;
  color: #e5dfd3;
}

.page-index-featured-games__guide-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFD700;
  color: #1A202C;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
}

.page-index-featured-games__guide-list strong {
  color: #FFD700;
}

.page-index-featured-games__guide-cta {
  text-align: center;
  margin-top: 50px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-index-featured-games__strategy-list {
  list-style: disc;
  padding-left: 40px;
  margin-top: 30px;
  color: #e5dfd3;
}

.page-index-featured-games__strategy-list li {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-index-featured-games__strategy-list strong {
  color: #FFD700;
}

.page-index-featured-games__responsible-list {
  list-style: disc;
  padding-left: 40px;
  margin-top: 30px;
  color: #e5dfd3;
}

.page-index-featured-games__responsible-list li {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-index-featured-games__responsible-list strong {
  color: #FFD700;
}

.page-index-featured-games__faq-items {
  margin-top: 40px;
}

.page-index-featured-games__faq-item {
  background-color: #2a3442;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-index-featured-games__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  line-height: 1;
  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: 1.1em;
  color: #ccc;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding-top: 0;
}

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

.page-index-featured-games__cta-final {
  background-color: #0d121b;
  text-align: center;
  padding: 80px 20px;
  border-top: 5px solid #FFD700;
}

.page-index-featured-games__cta-final-content {
  max-width: 900px;
}

.page-index-featured-games__cta-final .page-index-featured-games__section-title {
  color: #fff;
  margin-bottom: 20px;
}

.page-index-featured-games__cta-final .page-index-featured-games__text {
  color: #ccc;
  margin-bottom: 40px;
}

@media (max-width: 1024px) {
  .page-index-featured-games__hero-title {
    font-size: 3em;
  }
  .page-index-featured-games__section-title {
    font-size: 2.2em;
  }
  .page-index-featured-games__game-card-title {
    font-size: 1.6em;
  }
  .page-index-featured-games__promo-title {
    font-size: 1.8em;
  }
}

@media (max-width: 768px) {
  .page-index-featured-games__hero {
    flex-direction: column;
    padding: 60px 15px;
  }
  .page-index-featured-games__hero-title {
    font-size: 2.5em;
  }
  .page-index-featured-games__hero-description {
    font-size: 1.1em;
  }
  .page-index-featured-games__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-featured-games__btn {
    width: 100%;
    max-width: 300px;
  }
  .page-index-featured-games__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-index-featured-games__text {
    font-size: 1em;
  }
  .page-index-featured-games__game-grid,
  .page-index-featured-games__promo-grid,
  .page-index-featured-games__benefits-grid {
    grid-template-columns: 1fr;
  }
  .page-index-featured-games__guide-list li {
    padding-left: 40px;
    font-size: 1em;
  }
  .page-index-featured-games__guide-list li::before {
    width: 30px;
    height: 30px;
    font-size: 1em;
  }
  .page-index-featured-games__faq-question {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-index-featured-games__hero-title {
    font-size: 2em;
  }
  .page-index-featured-games__hero-description {
    font-size: 0.95em;
  }
  .page-index-featured-games__btn--large {
    font-size: 1em;
    padding: 15px 25px;
  }
  .page-index-featured-games__section-title {
    font-size: 1.6em;
  }
  .page-index-featured-games__game-card-title {
    font-size: 1.4em;
  }
  .page-index-featured-games__promo-title {
    font-size: 1.6em;
  }
  .page-index-featured-games__benefit-title {
    font-size: 1.4em;
  }
}