/* style/index-fu88-featured-games.css */
.page-index-fu88-featured-games {
  font-family: 'Arial', sans-serif;
  color: #E5E5E5; /* Light gray for general text for contrast with dark background */
  background-color: #1A202C;
}

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

.page-index-fu88-featured-games__hero-section {
  background: linear-gradient(135deg, #1A202C, #3A3F47);
  padding: 100px 0;
  text-align: center;
  border-bottom: 2px solid #FFD700;
}

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

.page-index-fu88-featured-games__hero-description {
  font-size: 1.3em;
  color: #CCCCCC;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-index-fu88-featured-games__hero-button,
.page-index-fu88-featured-games__main-cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-index-fu88-featured-games__hero-button:hover,
.page-index-fu88-featured-games__main-cta-button:hover {
  background-color: #E5C100;
  transform: translateY(-3px);
}

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

.page-index-fu88-featured-games__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-index-fu88-featured-games__section-subtitle {
  font-size: 1.2em;
  color: #AAAAAA;
  text-align: center;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-fu88-featured-games__intro-section,
.page-index-fu88-featured-games__games-section,
.page-index-fu88-featured-games__why-choose-us,
.page-index-fu88-featured-games__registration-guide,
.page-index-fu88-featured-games__promotions-section,
.page-index-fu88-featured-games__tips-section,
.page-index-fu88-featured-games__responsible-gambling,
.page-index-fu88-featured-games__faq-section,
.page-index-fu88-featured-games__cta-final {
  padding: 60px 0;
}

.page-index-fu88-featured-games__intro-content p,
.page-index-fu88-featured-games__game-category p,
.page-index-fu88-featured-games__advantage-item p,
.page-index-fu88-featured-games__step-item p,
.page-index-fu88-featured-games__promo-card p,
.page-index-fu88-featured-games__tips-list li,
.page-index-fu88-featured-games__responsible-gambling p,
.page-index-fu88-featured-games__faq-answer {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #E5E5E5;
}

.page-index-fu88-featured-games__image-full {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 30px 0;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-index-fu88-featured-games__game-category {
  margin-bottom: 80px;
  background-color: #2A303C;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A3F47;
}

.page-index-fu88-featured-games__category-title {
  font-size: 2.2em;
  color: #FFD700;
  margin-bottom: 30px;
  text-align: center;
}

.page-index-fu88-featured-games__category-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px;
}

.page-index-fu88-featured-games__image-left,
.page-index-fu88-featured-games__image-right {
  width: 45%; /* Adjusted for better content flow */
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-index-fu88-featured-games__image-left {
  order: -1; /* Image appears first on left */
}

.page-index-fu88-featured-games__image-right {
  order: 1; /* Image appears first on right */
}

.page-index-fu88-featured-games__category-content p,
.page-index-fu88-featured-games__category-content ul {
  flex: 1;
  min-width: 45%; /* Ensures text wraps around image */
}

.page-index-fu88-featured-games__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #E5E5E5;
}

.page-index-fu88-featured-games__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-index-fu88-featured-games__button-secondary {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-index-fu88-featured-games__button-secondary:hover {
  background-color: #E5C100;
  transform: translateY(-2px);
}

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

.page-index-fu88-featured-games__advantage-item {
  background-color: #2A303C;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  border: 1px solid #3A3F47;
}

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

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

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

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

.page-index-fu88-featured-games__step-item {
  background-color: #2A303C;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A3F47;
}

.page-index-fu88-featured-games__step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: #FFD700;
  color: #1A202C;
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

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

.page-index-fu88-featured-games__main-cta-button {
  margin-top: 60px;
  text-align: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

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

.page-index-fu88-featured-games__promo-card {
  background-color: #2A303C;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid #3A3F47;
  display: flex;
  flex-direction: column;
}

.page-index-fu88-featured-games__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

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

.page-index-fu88-featured-games__promo-card p {
  padding: 0 20px 20px 20px;
  flex-grow: 1;
}

.page-index-fu88-featured-games__button-small {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-index-fu88-featured-games__button-small:hover {
  background-color: #E5C100;
  transform: translateY(-2px);
}

.page-index-fu88-featured-games__promo-note {
  font-size: 0.9em;
  color: #999999;
  text-align: center;
  margin-top: 40px;
}

.page-index-fu88-featured-games__tips-list {
  list-style-type: decimal;
  margin-left: 30px;
  padding-left: 0;
  color: #E5E5E5;
}

.page-index-fu88-featured-games__tips-list li {
  margin-bottom: 15px;
  font-size: 1.1em;
  line-height: 1.6;
  background-color: #2A303C;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  border-left: 4px solid #FFD700;
}

.page-index-fu88-featured-games__faq-item {
  background-color: #2A303C;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A3F47;
}

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

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

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

.page-index-fu88-featured-games__faq-answer {
  font-size: 1.05em;
  color: #E5E5E5;
  display: none; /* Hidden by default */
  margin-top: 15px;
}

.page-index-fu88-featured-games__faq-link {
  color: #FFD700;
  text-decoration: underline;
}

.page-index-fu88-featured-games__cta-final {
  background: linear-gradient(45deg, #1A202C, #FFD700);
  padding: 80px 0;
  text-align: center;
  border-top: 2px solid #FFD700;
}

.page-index-fu88-featured-games__cta-final-title {
  font-size: 3em;
  color: #1A202C;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-index-fu88-featured-games__cta-final-description {
  font-size: 1.4em;
  color: #333333;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-fu88-featured-games__hero-title {
    font-size: 2.8em;
  }
  .page-index-fu88-featured-games__section-title {
    font-size: 2.2em;
  }
  .page-index-fu88-featured-games__category-title {
    font-size: 1.8em;
  }
  .page-index-fu88-featured-games__image-left,
  .page-index-fu88-featured-games__image-right,
  .page-index-fu88-featured-games__category-content p,
  .page-index-fu88-featured-games__category-content ul {
    width: 100%;
    min-width: 100%;
    order: unset; /* Reset order for smaller screens */
  }
  .page-index-fu88-featured-games__category-content {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-index-fu88-featured-games__hero-title {
    font-size: 2.2em;
  }
  .page-index-fu88-featured-games__hero-description {
    font-size: 1.1em;
  }
  .page-index-fu88-featured-games__section-title {
    font-size: 1.8em;
  }
  .page-index-fu88-featured-games__section-subtitle {
    font-size: 1em;
  }
  .page-index-fu88-featured-games__hero-button,
  .page-index-fu88-featured-games__main-cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-index-fu88-featured-games__advantage-item,
  .page-index-fu88-featured-games__step-item,
  .page-index-fu88-featured-games__promo-card {
    padding: 25px;
  }
  .page-index-fu88-featured-games__cta-final-title {
    font-size: 2.2em;
  }
  .page-index-fu88-featured-games__cta-final-description {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-index-fu88-featured-games__hero-title {
    font-size: 1.8em;
  }
  .page-index-fu88-featured-games__section-title {
    font-size: 1.5em;
  }
  .page-index-fu88-featured-games__category-title {
    font-size: 1.5em;
  }
  .page-index-fu88-featured-games__hero-button,
  .page-index-fu88-featured-games__main-cta-button {
    font-size: 1em;
    padding: 10px 20px;
  }
  .page-index-fu88-featured-games__advantages-grid,
  .page-index-fu88-featured-games__steps-grid,
  .page-index-fu88-featured-games__promo-cards {
    grid-template-columns: 1fr;
  }
  .page-index-fu88-featured-games__faq-item {
    padding: 15px;
  }
  .page-index-fu88-featured-games__faq-question {
    font-size: 1.2em;
  }
  .page-index-fu88-featured-games__cta-final-title {
    font-size: 1.8em;
  }
  .page-index-fu88-featured-games__cta-final-description {
    font-size: 1em;
  }
}