/* style/index-featured-casino-games.css */
.page-index-featured-casino-games {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* Light text on dark background */
  background-color: #0D1B2A;
  line-height: 1.6;
}

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

.page-index-featured-casino-games__hero {
  background: linear-gradient(135deg, #0D1B2A 0%, #3a0d4c 100%); /* Darker gradient for hero */
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-featured-casino-games__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 0;
}

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

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

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

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

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

.page-index-featured-casino-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;
  cursor: pointer;
  border: none;
}

.page-index-featured-casino-games__btn--primary {
  background-color: #FFD700;
  color: #0D1B2A; /* Dark text on gold background */
}

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

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

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

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

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

.page-index-featured-casino-games__btn--text-link {
  background: none;
  border: none;
  color: #FFD700;
  padding: 5px 0;
  font-size: 1em;
  text-decoration: underline;
}

.page-index-featured-casino-games__btn--text-link:hover {
  color: #e6c200;
}

.page-index-featured-casino-games__section {
  padding: 60px 0;
}

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

.page-index-featured-casino-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-casino-games__text-content {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 30px auto;
  text-align: center;
  color: #C0C0C0;
}

.page-index-featured-casino-games__image {
  display: block;
  margin: 30px auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.page-index-featured-casino-games__image--small {
  max-width: 300px;
}

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

.page-index-featured-casino-games__game-card {
  background-color: #1a2a3a; /* Slightly lighter dark background for cards */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px 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-casino-games__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.page-index-featured-casino-games__game-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  border: 2px solid #FFD700;
}

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

.page-index-featured-casino-games__game-card-description {
  font-size: 1em;
  color: #C0C0C0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-index-featured-casino-games__feature-item {
  background-color: #1a2a3a;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

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

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

.page-index-featured-casino-games__feature-description {
  font-size: 0.95em;
  color: #C0C0C0;
}

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

.page-index-featured-casino-games__step-item {
  background-color: #1a2a3a;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-featured-casino-games__step-number {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #FFD700;
  color: #0D1B2A;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
}

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

.page-index-featured-casino-games__step-description {
  font-size: 1em;
  color: #C0C0C0;
}

.page-index-featured-casino-games__cta-final {
  text-align: center;
  margin-top: 60px;
}

.page-index-featured-casino-games__section--responsible-gaming {
  background-color: #0D1B2A;
  text-align: center;
}

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

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

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

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-featured-casino-games__hero-title {
    font-size: 3em;
  }

  .page-index-featured-casino-games__section-title {
    font-size: 2.2em;
  }

  .page-index-featured-casino-games__game-card-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-index-featured-casino-games__hero {
    padding: 60px 0;
  }

  .page-index-featured-casino-games__hero-title {
    font-size: 2.5em;
  }

  .page-index-featured-casino-games__hero-description {
    font-size: 1.1em;
  }

  .page-index-featured-casino-games__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-index-featured-casino-games__btn {
    width: 80%;
    margin: 0 auto;
  }

  .page-index-featured-casino-games__section {
    padding: 40px 0;
  }

  .page-index-featured-casino-games__section-title {
    font-size: 2em;
  }

  .page-index-featured-casino-games__game-grid,
  .page-index-featured-casino-games__features-grid,
  .page-index-featured-casino-games__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-index-featured-casino-games__game-card,
  .page-index-featured-casino-games__feature-item,
  .page-index-featured-casino-games__step-item {
    padding: 20px;
  }

  .page-index-featured-casino-games__game-card-image {
    height: 180px;
  }

  .page-index-featured-casino-games__faq-question {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-index-featured-casino-games__hero-title {
    font-size: 2em;
  }

  .page-index-featured-casino-games__section-title {
    font-size: 1.8em;
  }

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

  .page-index-featured-casino-games__hero-actions {
    gap: 10px;
  }

  .page-index-featured-casino-games__game-card-title {
    font-size: 1.4em;
  }

  .page-index-featured-casino-games__game-card-image {
    height: 150px;
  }
}