/* style/index-w66-bet-review.css */
:root {
  --w66bet-primary-color: #11A84E;
  --w66bet-secondary-color: #22C768;
  --w66bet-bg-color: #08160F;
  --w66bet-card-bg: #11271B;
  --w66bet-text-main: #F2FFF6;
  --w66bet-text-secondary: #A7D9B8;
  --w66bet-border-color: #2E7A4E;
  --w66bet-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --w66bet-glow-color: #57E38D;
  --w66bet-gold-color: #F2C14E;
  --w66bet-divider-color: #1E3A2A;
  --w66bet-deep-green: #0A4B2C;
}

.page-index-w66-bet-review {
  color: var(--w66bet-text-main); /* Main text color for the page */
  background-color: var(--w66bet-bg-color); /* Overall dark background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-index-w66-bet-review__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-index-w66-bet-review__section-title {
  font-size: 2.5em;
  color: var(--w66bet-text-main);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.page-index-w66-bet-review__text-block {
  font-size: 1.1em;
  color: var(--w66bet-text-secondary);
  margin-bottom: 20px;
  text-align: justify;
}

/* Hero Section */
.page-index-w66-bet-review__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body handles padding-top, this is for visual spacing */
  background-color: var(--w66bet-bg-color);
  overflow: hidden;
}

.page-index-w66-bet-review__hero-image-container {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.page-index-w66-bet-review__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

.page-index-w66-bet-review__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 40px 20px 0;
  box-sizing: border-box;
}

.page-index-w66-bet-review__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em); /* Using clamp for H1 font size */
  color: var(--w66bet-gold-color);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-index-w66-bet-review__hero-description {
  font-size: 1.2em;
  color: var(--w66bet-text-main);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-w66-bet-review__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-index-w66-bet-review__btn-primary,
.page-index-w66-bet-review__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
}

.page-index-w66-bet-review__btn-primary {
  background: var(--w66bet-button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-index-w66-bet-review__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-index-w66-bet-review__btn-secondary {
  background-color: transparent;
  color: var(--w66bet-primary-color);
  border: 2px solid var(--w66bet-primary-color);
}

.page-index-w66-bet-review__btn-secondary:hover {
  background-color: var(--w66bet-primary-color);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Introduction Section */
.page-index-w66-bet-review__introduction-section {
  padding: 60px 0;
  background-color: var(--w66bet-card-bg);
  color: var(--w66bet-text-secondary);
}

/* Features Section */
.page-index-w66-bet-review__features-section {
  padding: 60px 0;
  background-color: var(--w66bet-bg-color);
}

.page-index-w66-bet-review__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-index-w66-bet-review__feature-card {
  background-color: var(--w66bet-card-bg);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--w66bet-border-color);
}

.page-index-w66-bet-review__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index-w66-bet-review__feature-icon {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 5px;
}

.page-index-w66-bet-review__feature-title {
  font-size: 1.5em;
  color: var(--w66bet-gold-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-index-w66-bet-review__feature-description {
  font-size: 1em;
  color: var(--w66bet-text-secondary);
}

/* Game Categories Section */
.page-index-w66-bet-review__game-categories-section {
  padding: 60px 0;
  background-color: var(--w66bet-card-bg);
}

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

.page-index-w66-bet-review__game-card {
  background-color: var(--w66bet-bg-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--w66bet-border-color);
}

.page-index-w66-bet-review__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index-w66-bet-review__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-index-w66-bet-review__game-title {
  font-size: 1.3em;
  color: var(--w66bet-gold-color);
  padding: 15px 20px 5px;
  font-weight: 600;
}

.page-index-w66-bet-review__game-title a {
  color: inherit;
  text-decoration: none;
}

.page-index-w66-bet-review__game-title a:hover {
  text-decoration: underline;
}

.page-index-w66-bet-review__game-description {
  font-size: 0.95em;
  color: var(--w66bet-text-secondary);
  padding: 0 20px 20px;
}

/* Promotions Section */
.page-index-w66-bet-review__promotions-section {
  padding: 60px 0;
  background-color: var(--w66bet-bg-color);
}

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

.page-index-w66-bet-review__promo-card {
  background-color: var(--w66bet-card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--w66bet-border-color);
}

.page-index-w66-bet-review__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index-w66-bet-review__promo-image {
  width: 100%;
  height: 220px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-index-w66-bet-review__promo-title {
  font-size: 1.4em;
  color: var(--w66bet-gold-color);
  padding: 15px 20px 5px;
  font-weight: 600;
}

.page-index-w66-bet-review__promo-description {
  font-size: 0.95em;
  color: var(--w66bet-text-secondary);
  padding: 0 20px 20px;
}

.page-index-w66-bet-review__promo-card .page-index-w66-bet-review__btn-primary {
  display: inline-block;
  margin: 0 20px 20px;
  width: auto;
  min-width: 120px;
}

.page-index-w66-bet-review__cta-center {
  text-align: center;
}

/* Guide Section */
.page-index-w66-bet-review__guide-section {
  padding: 60px 0;
  background-color: var(--w66bet-card-bg);
}

.page-index-w66-bet-review__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-index-w66-bet-review__guide-item {
  background-color: var(--w66bet-bg-color);
  border-radius: 10px;
  padding-bottom: 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--w66bet-border-color);
  overflow: hidden;
}

.page-index-w66-bet-review__guide-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
  display: block;
}

.page-index-w66-bet-review__guide-title {
  font-size: 1.4em;
  color: var(--w66bet-gold-color);
  margin-bottom: 10px;
  padding: 0 20px;
}

.page-index-w66-bet-review__guide-description {
  font-size: 1em;
  color: var(--w66bet-text-secondary);
  padding: 0 20px;
}

/* Mobile App Section */
.page-index-w66-bet-review__mobile-app-section {
  padding: 60px 0;
  background-color: var(--w66bet-bg-color);
}

.page-index-w66-bet-review__app-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-index-w66-bet-review__app-text {
  flex: 1;
  min-width: 300px;
}

.page-index-w66-bet-review__app-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-index-w66-bet-review__app-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-index-w66-bet-review__app-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* FAQ Section */
.page-index-w66-bet-review__faq-section {
  padding: 60px 0;
  background-color: var(--w66bet-card-bg);
}

.page-index-w66-bet-review__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-index-w66-bet-review__faq-item {
  background-color: var(--w66bet-bg-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid var(--w66bet-border-color);
}

.page-index-w66-bet-review__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  color: var(--w66bet-text-main);
  font-weight: 600;
  cursor: pointer;
  background-color: var(--w66bet-deep-green);
  border-bottom: 1px solid var(--w66bet-divider-color);
}

.page-index-w66-bet-review__faq-question::-webkit-details-marker {
  display: none;
}

.page-index-w66-bet-review__faq-question::marker {
  display: none;
}

.page-index-w66-bet-review__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--w66bet-gold-color);
  transition: transform 0.3s ease;
}

.page-index-w66-bet-review__faq-item[open] .page-index-w66-bet-review__faq-toggle {
  transform: rotate(45deg);
}

.page-index-w66-bet-review__faq-answer {
  padding: 20px 25px;
  font-size: 1.05em;
  color: var(--w66bet-text-secondary);
  background-color: var(--w66bet-card-bg);
  border-top: 1px solid var(--w66bet-divider-color);
}

/* Final CTA Section */
.page-index-w66-bet-review__cta-final-section {
  padding: 60px 0;
  text-align: center;
  background-color: var(--w66bet-primary-color);
  background-image: linear-gradient(135deg, var(--w66bet-primary-color) 0%, var(--w66bet-deep-green) 100%);
}

.page-index-w66-bet-review__cta-final-section .page-index-w66-bet-review__section-title {
  color: #ffffff;
}

.page-index-w66-bet-review__cta-final-section .page-index-w66-bet-review__text-block {
  color: var(--w66bet-text-main);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

/* General dark/light background classes for contrast */
.page-index-w66-bet-review__dark-bg {
  background-color: var(--w66bet-bg-color);
  color: var(--w66bet-text-main);
}

.page-index-w66-bet-review__light-bg {
  background-color: var(--w66bet-card-bg);
  color: var(--w66bet-text-secondary);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-w66-bet-review__section-title {
    font-size: 2em;
  }
  .page-index-w66-bet-review__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }
  .page-index-w66-bet-review__app-content {
    flex-direction: column-reverse;
  }
  .page-index-w66-bet-review__app-text, .page-index-w66-bet-review__app-image-wrapper {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-index-w66-bet-review {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-index-w66-bet-review__container {
    padding: 0 15px;
  }
  .page-index-w66-bet-review__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-index-w66-bet-review__main-title {
    font-size: clamp(1.8em, 6vw, 2.8em);
  }
  .page-index-w66-bet-review__hero-description {
    font-size: 1.1em;
  }
  .page-index-w66-bet-review__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-w66-bet-review__btn-primary,
  .page-index-w66-bet-review__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }
  .page-index-w66-bet-review__app-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .page-index-w66-bet-review__app-buttons a {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Mobile image, video, and container adaptations */
  .page-index-w66-bet-review img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-index-w66-bet-review video,
  .page-index-w66-bet-review__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-index-w66-bet-review__section,
  .page-index-w66-bet-review__card,
  .page-index-w66-bet-review__container,
  .page-index-w66-bet-review__hero-section,
  .page-index-w66-bet-review__introduction-section,
  .page-index-w66-bet-review__features-section,
  .page-index-w66-bet-review__game-categories-section,
  .page-index-w66-bet-review__promotions-section,
  .page-index-w66-bet-review__guide-section,
  .page-index-w66-bet-review__mobile-app-section,
  .page-index-w66-bet-review__faq-section,
  .page-index-w66-bet-review__cta-final-section,
  .page-index-w66-bet-review__video-section,
  .page-index-w66-bet-review__video-container,
  .page-index-w66-bet-review__video-wrapper,
  .page-index-w66-bet-review__cta-buttons,
  .page-index-w66-bet-review__button-group,
  .page-index-w66-bet-review__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-index-w66-bet-review__hero-section,
  .page-index-w66-bet-review__introduction-section,
  .page-index-w66-bet-review__features-section,
  .page-index-w66-bet-review__game-categories-section,
  .page-index-w66-bet-review__promotions-section,
  .page-index-w66-bet-review__guide-section,
  .page-index-w66-bet-review__mobile-app-section,
  .page-index-w66-bet-review__faq-section,
  .page-index-w66-bet-review__cta-final-section {
    padding-left: 0;
    padding-right: 0;
  }
  .page-index-w66-bet-review__hero-content {
    padding: 20px 15px 0;
  }
  .page-index-w66-bet-review__video-section {
    padding-top: 10px !important;
  }
}