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

.page-blog-hello88-66-review {
  font-family: Arial, sans-serif;
  color: var(--text-main-color);
  background-color: var(--page-bg-color);
  line-height: 1.6;
}

.page-blog-hello88-66-review__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-hello88-66-review__section-title {
  font-size: 2.5em;
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.3);
}

.page-blog-hello88-66-review__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--text-secondary-color);
  text-align: justify;
}

.page-blog-hello88-66-review__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-blog-hello88-66-review__hero-image-wrapper {
  width: 100%;
  position: relative;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  overflow: hidden;
}

.page-blog-hello88-66-review__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.page-blog-hello88-66-review__hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  margin-top: -150px; /* Adjust to pull content up over the image */
  padding: 0 20px;
}

.page-blog-hello88-66-review__hero-title {
  font-size: clamp(2.5em, 5vw, 3.5em);
  color: var(--gold-color);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 0 0 15px rgba(242, 193, 78, 0.5);
}

.page-blog-hello88-66-review__hero-description {
  font-size: 1.2em;
  color: var(--text-main-color);
  margin-bottom: 30px;
  line-height: 1.5;
}

.page-blog-hello88-66-review__btn-primary,
.page-blog-hello88-66-review__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-hello88-66-review__btn-primary {
  background: var(--button-gradient);
  color: var(--text-main-color);
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-hello88-66-review__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
  opacity: 0.9;
}

.page-blog-hello88-66-review__btn-secondary {
  background-color: transparent;
  color: var(--gold-color);
  border: 2px solid var(--gold-color);
}

.page-blog-hello88-66-review__btn-secondary:hover {
  background-color: var(--gold-color);
  color: var(--page-bg-color);
  transform: translateY(-3px);
}

.page-blog-hello88-66-review__introduction-section,
.page-blog-hello88-66-review__features-section,
.page-blog-hello88-66-review__promotion-section,
.page-blog-hello88-66-review__guide-section,
.page-blog-hello88-66-review__security-section,
.page-blog-hello88-66-review__faq-section,
.page-blog-hello88-66-review__conclusion-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--divider-color);
}

.page-blog-hello88-66-review__introduction-section:last-of-type,
.page-blog-hello88-66-review__conclusion-section:last-of-type {
  border-bottom: none;
}

.page-blog-hello88-66-review__video-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 30px auto 40px auto;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  background-color: var(--deep-green-color);
  box-sizing: border-box;
}

.page-blog-hello88-66-review__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.page-blog-hello88-66-review__feature-grid,
.page-blog-hello88-66-review__promotion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-hello88-66-review__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-hello88-66-review__security-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-hello88-66-review__card {
  background-color: var(--card-bg-color);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border-color);
}

.page-blog-hello88-66-review__dark-bg {
  background-color: var(--deep-green-color);
  color: var(--text-main-color);
}

.page-blog-hello88-66-review__light-bg {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter for contrast */
  color: var(--text-main-color);
}

.page-blog-hello88-66-review__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-blog-hello88-66-review__card-title {
  font-size: 1.5em;
  color: var(--gold-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-hello88-66-review__card-description {
  color: var(--text-secondary-color);
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
  text-align: justify;
}

.page-blog-hello88-66-review__list {
  list-style: disc inside;
  text-align: left;
  margin-bottom: 20px;
  color: var(--text-secondary-color);
  padding-left: 20px;
}

.page-blog-hello88-66-review__list li {
  margin-bottom: 8px;
}

.page-blog-hello88-66-review__cta-final {
  margin-top: 40px;
  font-size: 1.2em;
  padding: 18px 35px;
}

/* FAQ Section */
.page-blog-hello88-66-review__faq-list {
  margin-top: 40px;
}

.page-blog-hello88-66-review__faq-item {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-hello88-66-review__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--text-main-color);
  cursor: pointer;
  transition: background-color 0.3s ease;
  list-style: none; /* For details summary */
}

.page-blog-hello88-66-review__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-hello88-66-review__faq-question:hover {
  background-color: var(--deep-green-color);
}

.page-blog-hello88-66-review__faq-qtext {
  flex-grow: 1;
  color: var(--gold-color);
}

.page-blog-hello88-66-review__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--glow-color);
  margin-left: 15px;
}

.page-blog-hello88-66-review__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  color: var(--text-secondary-color);
  text-align: justify;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .page-blog-hello88-66-review {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-hello88-66-review__container {
    padding: 0 15px !important;
  }

  .page-blog-hello88-66-review__hero-content {
    margin-top: -80px; /* Adjust for smaller screens */
  }

  .page-blog-hello88-66-review__hero-title {
    font-size: 2em;
  }

  .page-blog-hello88-66-review__hero-description {
    font-size: 1em;
  }

  .page-blog-hello88-66-review__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-blog-hello88-66-review__text-block {
    font-size: 0.95em;
  }

  .page-blog-hello88-66-review__btn-primary,
  .page-blog-hello88-66-review__btn-secondary,
  .page-blog-hello88-66-review a[class*="button"],
  .page-blog-hello88-66-review 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;
    margin-bottom: 15px;
  }

  .page-blog-hello88-66-review__hero-content .page-blog-hello88-66-review__btn-primary {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .page-blog-hello88-66-review__feature-grid,
  .page-blog-hello88-66-review__promotion-grid,
  .page-blog-hello88-66-review__guide-steps,
  .page-blog-hello88-66-review__security-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-hello88-66-review__card {
    padding: 20px;
  }

  .page-blog-hello88-66-review__card-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-hello88-66-review img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-hello88-66-review__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .page-blog-hello88-66-review__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-hello88-66-review__video-section {
    padding-top: 10px !important;
  }

  .page-blog-hello88-66-review__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-blog-hello88-66-review__faq-answer {
    padding: 0 20px 15px 20px;
  }
}

/* Ensure images within content areas don't go below 200px on desktop */
.page-blog-hello88-66-review__card-image,
.page-blog-hello88-66-review__hero-image {
  min-width: 200px;
  min-height: 200px;
}

.page-blog-hello88-66-review__video {
  min-width: 200px;
  min-height: 200px;
}

/* Contrast Fixes (if needed, but design should prevent) */
.page-blog-hello88-66-review__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.page-blog-hello88-66-review__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}