.page-index-why-choose-qq88 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Default text color for dark body background */
  background-color: var(--black-color); /* Inherit from shared.css */
}

.page-index-why-choose-qq88__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-index-why-choose-qq88__section-title {
  font-size: 2.5em;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-index-why-choose-qq88__section-description {
  font-size: 1.1em;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-index-why-choose-qq88__hero-section {
  position: relative;
  padding: 120px 0 60px; /* Adjusted padding-top to avoid header overlap if shared.css doesn't set body padding-top */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  overflow: hidden;
}

.page-index-why-choose-qq88__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.6);
}

.page-index-why-choose-qq88__hero-title {
  font-size: 3.5em;
  color: #FFFFFF;
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-index-why-choose-qq88__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-index-why-choose-qq88__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

/* Buttons */
.page-index-why-choose-qq88__btn-primary,
.page-index-why-choose-qq88__btn-secondary {
  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;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-index-why-choose-qq88__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-index-why-choose-qq88__btn-primary:hover {
  background-color: #1a8cc2;
  border-color: #1a8cc2;
  transform: translateY(-3px);
}

.page-index-why-choose-qq88__btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-index-why-choose-qq88__btn-secondary:hover {
  background-color: #FFFFFF;
  color: #26A9E0;
  transform: translateY(-3px);
}

/* Video Section */
.page-index-why-choose-qq88__video-section {
  padding: 60px 0;
  background-color: var(--black-color);
  text-align: center;
}

.page-index-why-choose-qq88__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transform: translateY(0);
  transition: transform 0.3s ease-in-out;
}

.page-index-why-choose-qq88__video-wrapper:hover {
  transform: translateY(-5px);
}

.page-index-why-choose-qq88__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.page-index-why-choose-qq88__video-link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  cursor: pointer;
}

/* Features Section */
.page-index-why-choose-qq88__features-section {
  padding: 80px 0;
  background-color: #f8f9fa; /* Light background for contrast */
  color: #333333;
}

.page-index-why-choose-qq88__features-section .page-index-why-choose-qq88__section-title,
.page-index-why-choose-qq88__features-section .page-index-why-choose-qq88__section-description {
  color: #333333;
}

.page-index-why-choose-qq88__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-index-why-choose-qq88__feature-card {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #333333;
}

.page-index-why-choose-qq88__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.page-index-why-choose-qq88__feature-icon {
  width: 100%;
  height: auto;
  max-width: 250px; /* Ensure images are not too small but fit */
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-index-why-choose-qq88__feature-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-why-choose-qq88__feature-text {
  font-size: 1em;
  color: #555555;
  text-align: left;
}

/* Game Showcase Section */
.page-index-why-choose-qq88__game-showcase-section {
  padding: 80px 0;
  background-color: #1a1a1a; /* Darker background for game section */
}

.page-index-why-choose-qq88__game-showcase-section .page-index-why-choose-qq88__section-title,
.page-index-why-choose-qq88__game-showcase-section .page-index-why-choose-qq88__section-description {
  color: #FFFFFF;
}

.page-index-why-choose-qq88__game-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-index-why-choose-qq88__game-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  color: #f0f0f0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-index-why-choose-qq88__game-card:hover {
  transform: translateY(-8px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-index-why-choose-qq88__game-image {
  width: 100%;
  height: auto;
  max-width: 300px;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-index-why-choose-qq88__game-title {
  font-size: 1.6em;
  color: #26A9E0;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-index-why-choose-qq88__game-text {
  font-size: 0.95em;
  color: #cccccc;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-index-why-choose-qq88__cta-center {
  text-align: center;
  margin-top: 40px;
}

/* Promotions Section */
.page-index-why-choose-qq88__promotions-section {
  padding: 80px 0;
  background-color: #f8f9fa;
  color: #333333;
}

.page-index-why-choose-qq88__promotions-section .page-index-why-choose-qq88__section-title,
.page-index-why-choose-qq88__promotions-section .page-index-why-choose-qq88__section-description {
  color: #333333;
}

.page-index-why-choose-qq88__promotions-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-index-why-choose-qq88__promotion-image {
  flex: 1 1 45%;
  max-width: 550px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.page-index-why-choose-qq88__promotion-text {
  flex: 1 1 45%;
  color: #333333;
}

.page-index-why-choose-qq88__promotion-subtitle {
  font-size: 2em;
  color: #26A9E0;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-why-choose-qq88__promotion-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-index-why-choose-qq88__promotion-text li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
  font-size: 1.1em;
}

.page-index-why-choose-qq88__promotion-text li::before {
  content: '✓';
  color: #EA7C07; /* Login color for highlight */
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Testimonials Section */
.page-index-why-choose-qq88__testimonials-section {
  padding: 80px 0;
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-index-why-choose-qq88__testimonials-section .page-index-why-choose-qq88__section-title,
.page-index-why-choose-qq88__testimonials-section .page-index-why-choose-qq88__section-description {
  color: #FFFFFF;
}

.page-index-why-choose-qq88__testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-index-why-choose-qq88__testimonial-card {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  color: #FFFFFF;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.page-index-why-choose-qq88__testimonial-card:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.page-index-why-choose-qq88__testimonial-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid #FFFFFF;
}

.page-index-why-choose-qq88__testimonial-text {
  font-style: italic;
  font-size: 1.1em;
  margin-bottom: 20px;
}

.page-index-why-choose-qq88__testimonial-author {
  font-weight: bold;
  font-size: 1em;
}

/* FAQ Section */
.page-index-why-choose-qq88__faq-section {
  padding: 80px 0;
  background-color: #f8f9fa;
  color: #333333;
}

.page-index-why-choose-qq88__faq-section .page-index-why-choose-qq88__section-title,
.page-index-why-choose-qq88__faq-section .page-index-why-choose-qq88__section-description {
  color: #333333;
}

.page-index-why-choose-qq88__faq-list {
  max-width: 800px;
  margin: 40px auto 0;
}

.page-index-why-choose-qq88__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-index-why-choose-qq88__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #333333;
  cursor: pointer;
  background-color: #f0f0f0;
  transition: background-color 0.3s ease;
}

.page-index-why-choose-qq88__faq-question:hover {
  background-color: #e5e5e5;
}

.page-index-why-choose-qq88__faq-title {
  margin: 0;
  color: #26A9E0;
  font-size: 1em; /* Adjust to fit parent font-size */
}

.page-index-why-choose-qq88__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #26A9E0;
  transition: transform 0.3s ease;
}

.page-index-why-choose-qq88__faq-item.active .page-index-why-choose-qq88__faq-toggle {
  transform: rotate(45deg);
}

.page-index-why-choose-qq88__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  color: #555555;
}

.page-index-why-choose-qq88__faq-item.active .page-index-why-choose-qq88__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 20px;
}

.page-index-why-choose-qq88__faq-answer p {
  margin: 0;
  color: #555555;
}

/* Final CTA Section */
.page-index-why-choose-qq88__cta-section {
  padding: 80px 0;
  background-color: #1a1a1a;
  text-align: center;
}

.page-index-why-choose-qq88__cta-section .page-index-why-choose-qq88__section-title,
.page-index-why-choose-qq88__cta-section .page-index-why-choose-qq88__section-description {
  color: #FFFFFF;
}

.page-index-why-choose-qq88__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-why-choose-qq88__hero-title {
    font-size: 3em;
  }
  .page-index-why-choose-qq88__section-title {
    font-size: 2em;
  }
  .page-index-why-choose-qq88__features-grid,
  .page-index-why-choose-qq88__game-cards-grid,
  .page-index-why-choose-qq88__testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-index-why-choose-qq88__promotions-content {
    flex-direction: column;
    align-items: center;
  }
  .page-index-why-choose-qq88__promotion-image,
  .page-index-why-choose-qq88__promotion-text {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-index-why-choose-qq88 {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-index-why-choose-qq88__hero-section {
    padding: 80px 0 40px;
  }
  .page-index-why-choose-qq88__hero-title {
    font-size: 2.2em;
  }
  .page-index-why-choose-qq88__hero-description {
    font-size: 1em;
  }
  .page-index-why-choose-qq88__section-title {
    font-size: 1.8em;
  }
  .page-index-why-choose-qq88__section-description {
    font-size: 0.9em;
  }
  .page-index-why-choose-qq88__hero-cta-buttons,
  .page-index-why-choose-qq88__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-why-choose-qq88__btn-primary,
  .page-index-why-choose-qq88__btn-secondary,
  .page-index-why-choose-qq88 a[class*="button"],
  .page-index-why-choose-qq88 a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-index-why-choose-qq88__cta-buttons,
  .page-index-why-choose-qq88__button-group,
  .page-index-why-choose-qq88__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-index-why-choose-qq88__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-index-why-choose-qq88 video,
  .page-index-why-choose-qq88__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-index-why-choose-qq88__video-section,
  .page-index-why-choose-qq88__video-container,
  .page-index-why-choose-qq88__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-index-why-choose-qq88 img {
    max-width: 100% !important;
    height: auto !important;
  }
  .page-index-why-choose-qq88__section,
  .page-index-why-choose-qq88__card,
  .page-index-why-choose-qq88__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-index-why-choose-qq88__feature-icon,
  .page-index-why-choose-qq88__game-image,
  .page-index-why-choose-qq88__promotion-image,
  .page-index-why-choose-qq88__testimonial-avatar {
    max-width: 100% !important;
    height: auto !important;
  }
  .page-index-why-choose-qq88__promotion-text li {
    font-size: 1em;
  }
  .page-index-why-choose-qq88__faq-question {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-index-why-choose-qq88__hero-title {
    font-size: 1.8em;
  }
  .page-index-why-choose-qq88__section-title {
    font-size: 1.5em;
  }
  .page-index-why-choose-qq88__feature-title {
    font-size: 1.5em;
  }
  .page-index-why-choose-qq88__game-title {
    font-size: 1.3em;
  }
  .page-index-why-choose-qq88__promotion-subtitle {
    font-size: 1.6em;
  }
}

/* Color Contrast Fixes (as per instructions) */
.page-index-why-choose-qq88__dark-bg {
  color: #ffffff;
  background: #1a1a1a;
}

.page-index-why-choose-qq88__light-bg {
  color: #333333;
  background: #f8f9fa;
}

.page-index-why-choose-qq88__card {
  background: #ffffff;
  color: #333333;
  border: 1px solid #e0e0e0;
}

.page-index-why-choose-qq88__game-card {
  background-color: rgba(255, 255, 255, 0.08);
  color: #f0f0f0;
}

.page-index-why-choose-qq88__testimonials-section {
  background: #26A9E0;
  color: #ffffff;
}

.page-index-why-choose-qq88__faq-item {
  background-color: #FFFFFF;
  color: #333333;
}

.page-index-why-choose-qq88__faq-question {
  background-color: #f0f0f0;
  color: #333333;
}

.page-index-why-choose-qq88__faq-answer {
  color: #555555;
}