/* style/index-88xx-featured-games.css */
.page-index-88xx-featured-games {
  font-family: 'Arial', sans-serif;
  color: #f8f8f8; /* Default text color for dark background */
  background-color: #000000; /* Main background color */
}

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

.page-index-88xx-featured-games__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-index-88xx-featured-games__section-title--light {
  color: #f8f8f8;
}

.page-index-88xx-featured-games__section-description,
.page-index-88xx-featured-games__text-block {
  font-size: 1.1em;
  line-height: 1.6;
  color: #cccccc;
  text-align: center;
  margin-bottom: 20px;
}

.page-index-88xx-featured-games__text-block--light {
  color: #f8f8f8;
}

.page-index-88xx-featured-games__btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.page-index-88xx-featured-games__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #000000; /* Black text on gold */
  border: 2px solid #FFD700;
}

.page-index-88xx-featured-games__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

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

.page-index-88xx-featured-games__btn--secondary:hover {
  background-color: #FFD700;
  color: #000000;
}

.page-index-88xx-featured-games__btn--text {
  background: none;
  border: none;
  color: #FFD700;
  padding: 0;
  font-size: 1.1em;
  text-decoration: underline;
}

.page-index-88xx-featured-games__btn--text:hover {
  color: #e6c200;
}

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

.page-index-88xx-featured-games__btn--center {
  display: block;
  margin: 40px auto 0;
  max-width: 300px;
}

.page-index-88xx-featured-games__btn--accent {
  background-color: #0028ff; /* Complementary blue for accent */
  color: #ffffff;
  border: 2px solid #0028ff;
}

.page-index-88xx-featured-games__btn--accent:hover {
  background-color: #001fcc;
  border-color: #001fcc;
}

/* Hero Section */
.page-index-88xx-featured-games__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  background: linear-gradient(135deg, #000000 0%, #333333 100%); /* Darker gradient */
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-index-88xx-featured-games__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: 0;
}

.page-index-88xx-featured-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.page-index-88xx-featured-games__hero-title {
  font-size: 3.8em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-88xx-featured-games__hero-subtitle {
  font-size: 1.4em;
  color: #f8f8f8;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

/* About Us Section */
.page-index-88xx-featured-games__about-us {
  padding: 80px 0;
  background-color: #1a1a1a;
}

/* Featured Games Section */
.page-index-88xx-featured-games__featured-games {
  padding: 80px 0;
  background-color: #000000;
}

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

.page-index-88xx-featured-games__game-card {
  background-color: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-index-88xx-featured-games__game-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}

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

.page-index-88xx-featured-games__game-card-text {
  font-size: 0.95em;
  color: #cccccc;
  line-height: 1.5;
  padding: 0 15px;
  flex-grow: 1;
}

.page-index-88xx-featured-games__game-card .page-index-88xx-featured-games__btn {
  margin-top: 20px;
}

/* Why Choose Us Section */
.page-index-88xx-featured-games__why-choose-us {
  padding: 80px 0;
  background-color: #1a1a1a;
}

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

.page-index-88xx-featured-games__advantage-item {
  text-align: center;
  background-color: #000000;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}

.page-index-88xx-featured-games__advantage-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-index-88xx-featured-games__advantage-title {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-88xx-featured-games__advantage-text {
  font-size: 0.95em;
  color: #cccccc;
  line-height: 1.5;
}

/* Guide Section */
.page-index-88xx-featured-games__guide {
  padding: 80px 0;
  background-color: #000000;
}

.page-index-88xx-featured-games__guide-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-index-88xx-featured-games__step-card {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  flex: 1 1 300px;
  max-width: 350px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-index-88xx-featured-games__step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background-color: #FFD700;
  color: #000000;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-index-88xx-featured-games__step-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-88xx-featured-games__step-text {
  font-size: 1em;
  color: #cccccc;
  line-height: 1.6;
}

.page-index-88xx-featured-games__cta-center {
  text-align: center;
  margin-top: 40px;
}

/* Download App Section */
.page-index-88xx-featured-games__download-app {
  padding: 80px 0;
  background-color: #1a1a1a;
}

.page-index-88xx-featured-games__download-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.page-index-88xx-featured-games__download-content {
  flex: 1 1 45%;
  min-width: 300px;
  text-align: left;
}

.page-index-88xx-featured-games__download-content .page-index-88xx-featured-games__section-title {
  text-align: left;
}

.page-index-88xx-featured-games__download-image-wrapper {
  flex: 1 1 45%;
  min-width: 300px;
  text-align: center;
}

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

.page-index-88xx-featured-games__app-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-index-88xx-featured-games__app-features li {
  color: #f8f8f8;
  font-size: 1.1em;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.page-index-88xx-featured-games__feature-icon {
  color: #FFD700;
  font-size: 1.5em;
  margin-right: 15px;
}

/* Responsible Gambling Section */
.page-index-88xx-featured-games__responsible-gambling {
  padding: 80px 0;
  background-color: #000000;
}

/* FAQ Section */
.page-index-88xx-featured-games__faq {
  padding: 80px 0;
  background-color: #1a1a1a;
}

.page-index-88xx-featured-games__faq-item {
  background-color: #000000;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}

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

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

.page-index-88xx-featured-games__faq-question.active::after {
  content: '-';
}

.page-index-88xx-featured-games__faq-answer {
  font-size: 1em;
  color: #cccccc;
  line-height: 1.6;
  display: none; /* Hidden by default */
  padding-top: 10px;
}

.page-index-88xx-featured-games__faq-answer.show {
  display: block;
}

/* Call to Action Section */
.page-index-88xx-featured-games__call-to-action {
  padding: 80px 0;
  background: linear-gradient(45deg, #000000, #333333, #000000); /* Darker gradient for CTA */
  text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-88xx-featured-games__hero-title {
    font-size: 3em;
  }
  .page-index-88xx-featured-games__section-title {
    font-size: 2em;
  }
  .page-index-88xx-featured-games__download-flex {
    flex-direction: column;
  }
  .page-index-88xx-featured-games__download-content,
  .page-index-88xx-featured-games__download-image-wrapper {
    text-align: center;
  }
  .page-index-88xx-featured-games__download-content .page-index-88xx-featured-games__section-title {
    text-align: center;
  }
  .page-index-88xx-featured-games__app-features {
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .page-index-88xx-featured-games__hero {
    min-height: 500px;
  }
  .page-index-88xx-featured-games__hero-title {
    font-size: 2.5em;
  }
  .page-index-88xx-featured-games__hero-subtitle {
    font-size: 1.2em;
  }
  .page-index-88xx-featured-games__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-88xx-featured-games__btn {
    width: 80%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  .page-index-88xx-featured-games__game-grid,
  .page-index-88xx-featured-games__advantages-grid,
  .page-index-88xx-featured-games__guide-steps {
    grid-template-columns: 1fr;
  }
  .page-index-88xx-featured-games__step-card {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .page-index-88xx-featured-games__hero-title {
    font-size: 2em;
  }
  .page-index-88xx-featured-games__section-title {
    font-size: 1.8em;
  }
  .page-index-88xx-featured-games__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-index-88xx-featured-games__game-card-title {
    font-size: 1.3em;
  }
  .page-index-88xx-featured-games__advantage-title {
    font-size: 1.2em;
  }
  .page-index-88xx-featured-games__faq-question {
    font-size: 1.1em;
  }
}