.page-index-featured-games {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0; /* Light grey for general text */
  background-color: #1a1a1a; /* Dark background for contrast */
}

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

.page-index-featured-games__hero-section {
  background: linear-gradient(135deg, #003366 0%, #001a33 100%); /* Dark blue gradient */
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: 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-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  color: #ffffff;
}

.page-index-featured-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFCC00; /* Accent color for title */
  line-height: 1.2;
  font-weight: bold;
}

.page-index-featured-games__hero-description {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 40px;
}

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

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

.page-index-featured-games__btn--primary {
  background-color: #FFCC00; /* Accent color */
  color: #003366; /* Main color */
}

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

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

.page-index-featured-games__btn--secondary:hover {
  background-color: #FFCC00;
  color: #003366; /* Main color */
  transform: translateY(-2px);
}

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

.page-index-featured-games__section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

.page-index-featured-games__section:nth-of-type(even) {
  background-color: #222222;
}

.page-index-featured-games__section-title {
  font-size: 2.5em;
  color: #FFCC00; /* Accent color */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-index-featured-games__section-text {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
  color: #e0e0e0;
}

.page-index-featured-games__game-categories {
  background-color: #003366; /* Main color for category section */
  color: #ffffff;
}

.page-index-featured-games__game-categories .page-index-featured-games__section-title {
  color: #FFCC00;
}

.page-index-featured-games__game-categories .page-index-featured-games__section-text {
  color: #e0e0e0;
}

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

.page-index-featured-games__category-card {
  background-color: #001a33; /* Darker blue for cards */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-index-featured-games__category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

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

.page-index-featured-games__category-title {
  font-size: 1.8em;
  color: #FFCC00; /* Accent color */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-featured-games__category-description {
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 25px;
  flex-grow: 1;
  color: #c0c0c0;
}

.page-index-featured-games__why-choose-ok9aa {
  background-color: #222222;
}

.page-index-featured-games__feature-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-index-featured-games__feature-list li {
  background-color: #333333;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.1em;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-index-featured-games__list-icon {
  color: #FFCC00; /* Accent color for checkmark */
  font-size: 1.5em;
  margin-right: 15px;
  line-height: 1;
}

.page-index-featured-games__feature-list li strong {
  color: #FFCC00;
}

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

.page-index-featured-games__mobile-experience {
  background-color: #003366;
  color: #ffffff;
}

.page-index-featured-games__mobile-flex {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.page-index-featured-games__mobile-content {
  flex: 1;
  min-width: 300px;
}

.page-index-featured-games__mobile-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

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

.page-index-featured-games__responsible-gambling {
  background-color: #1a1a1a;
}

.page-index-featured-games__faq {
  background-color: #222222;
}

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

.page-index-featured-games__faq-question {
  font-size: 1.3em;
  color: #FFCC00; /* Accent color */
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-index-featured-games__faq-answer {
  font-size: 1em;
  line-height: 1.7;
  color: #c0c0c0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-index-featured-games__hero-title {
    font-size: 3em;
  }
  .page-index-featured-games__section-title {
    font-size: 2em;
  }
  .page-index-featured-games__category-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-index-featured-games__mobile-flex {
    flex-direction: column;
    text-align: center;
  }
  .page-index-featured-games__mobile-content {
    order: 2;
  }
  .page-index-featured-games__mobile-image-wrapper {
    order: 1;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .page-index-featured-games__hero-title {
    font-size: 2.5em;
  }
  .page-index-featured-games__hero-description {
    font-size: 1em;
  }
  .page-index-featured-games__hero-cta {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-featured-games__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-featured-games__section {
    padding: 60px 0;
  }
  .page-index-featured-games__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-index-featured-games__category-card {
    padding: 25px;
  }
  .page-index-featured-games__category-title {
    font-size: 1.5em;
  }
  .page-index-featured-games__feature-list li {
    font-size: 1em;
    padding: 15px;
  }
  .page-index-featured-games__list-icon {
    font-size: 1.3em;
    margin-right: 10px;
  }
  .page-index-featured-games__cta-bottom {
    flex-direction: column;
    gap: 15px;
  }
  .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.9em;
  }
  .page-index-featured-games__section-title {
    font-size: 1.5em;
  }
  .page-index-featured-games__category-grid {
    grid-template-columns: 1fr;
  }
  .page-index-featured-games__category-card {
    padding: 20px;
  }
  .page-index-featured-games__category-image {
    height: 150px;
  }
  .page-index-featured-games__faq-question {
    font-size: 1.1em;
  }
  .page-index-featured-games__faq-answer {
    font-size: 0.9em;
  }
}