/* style/blog-win66-win-review.css */
/* body đã padding-top: var(--header-offset)；trang này không được viết lại biến đó */

/* Kiểu toàn cục cho nội dung trang, giả sử nền tối từ shared.css */
.page-blog-win66-win-review {
  background-color: var(--page-bg, #08160F); /* Fallback nếu --page-bg không được đặt */
  color: var(--text-main, #F2FFF6);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

/* Phần Hero */
.page-blog-win66-win-review__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Đảm bảo hình ảnh ở trên nội dung */
  align-items: center;
  padding-top: 10px; /* Khoảng đệm trên nhỏ, body xử lý offset header */
  background-color: var(--deep-green, #0A4B2C); /* Nền xanh đậm cho phần hero */
  padding-bottom: 60px;
}

.page-blog-win66-win-review__hero-image {
  width: 100%;
  max-width: 1920px;
  height: auto;
  display: block;
  object-fit: cover;
  margin-bottom: 30px; /* Khoảng cách giữa hình ảnh và nội dung */
}

.page-blog-win66-win-review__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.page-blog-win66-win-review__main-title {
  color: var(--text-main, #F2FFF6);
  font-size: clamp(2em, 4vw, 3.2em); /* Kích thước font phản hồi cho H1 */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.page-blog-win66-win-review__description {
  color: var(--text-secondary, #A7D9B8);
  font-size: 1.1em;
  margin-bottom: 30px;
}

/* Nút CTA */
.page-blog-win66-win-review__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-win66-win-review__btn-primary,
.page-blog-win66-win-review__btn-secondary,
.page-blog-win66-win-review__btn-inline {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%; /* Đảm bảo nút thích ứng với di động */
  box-sizing: border-box;
  white-space: normal; /* Cho phép xuống dòng văn bản */
  word-wrap: break-word; /* Cho phép xuống dòng văn bản */
  text-align: center;
}

.page-blog-win66-win-review__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-win66-win-review__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.page-blog-win66-win-review__btn-secondary {
  background-color: transparent;
  color: var(--gold, #F2C14E);
  border: 2px solid var(--gold, #F2C14E);
}

.page-blog-win66-win-review__btn-secondary:hover {
  background-color: var(--gold, #F2C14E);
  color: #08160F;
  transform: translateY(-2px);
}

.page-blog-win66-win-review__btn-inline {
  background-color: transparent;
  color: var(--glow, #57E38D);
  border: 1px solid var(--glow, #57E38D);
  padding: 8px 15px;
  font-size: 0.9em;
  border-radius: 5px;
  margin-top: 10px;
}

.page-blog-win66-win-review__btn-inline:hover {
  background-color: var(--glow, #57E38D);
  color: #08160F;
}

/* Tiêu đề phần */
.page-blog-win66-win-review__section-title {
  color: var(--text-main, #F2FFF6);
  font-size: 2.5em;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
  line-height: 1.3;
}

.page-blog-win66-win-review__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--glow, #57E38D);
  border-radius: 2px;
}

/* Các phần nội dung chung */
.page-blog-win66-win-review__overview-section,
.page-blog-win66-win-review__features-section,
.page-blog-win66-win-review__payment-section,
.page-blog-win66-win-review__testimonials-section,
.page-blog-win66-win-review__faq-section {
  padding: 60px 0;
  background-color: var(--background, #08160F); /* Nền chính */
}

.page-blog-win66-win-review__guide-section,
.page-blog-win66-win-review__support-section,
.page-blog-win66-win-review__conclusion-section {
  padding: 60px 0;
  background-color: var(--card-bg, #11271B); /* Nền tối hơn cho các phần cụ thể */
}

.page-blog-win66-win-review__text-block {
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 20px;
  font-size: 1.05em;
  text-align: justify;
}

/* Lưới tính năng */
.page-blog-win66-win-review__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-win66-win-review__feature-card {
  background-color: var(--card-bg, #11271B);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border, #2E7A4E);
}

.page-blog-win66-win-review__feature-card img {
  width: 100%;
  height: 200px; /* Chiều cao cố định để nhất quán */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block; /* Quan trọng cho hình ảnh phản hồi */
}

.page-blog-win66-win-review__card-title {
  color: var(--text-main, #F2FFF6);
  font-size: 1.5em;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-win66-win-review__card-text {
  color: var(--text-secondary, #A7D9B8);
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-win66-win-review__card-link {
  display: inline-block;
  color: var(--glow, #57E38D);
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.page-blog-win66-win-review__card-link:hover {
  border-color: var(--glow, #57E38D);
}

/* Các bước hướng dẫn */
.page-blog-win66-win-review__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-blog-win66-win-review__step-item {
  background-color: var(--deep-green, #0A4B2C); /* Xanh đậm cho các bước */
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid var(--border, #2E7A4E);
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.page-blog-win66-win-review__step-title {
  color: var(--gold, #F2C14E);
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-blog-win66-win-review__step-text {
  color: var(--text-secondary, #A7D9B8);
  font-size: 0.9em;
}

/* Danh sách thanh toán */
.page-blog-win66-win-review__payment-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 30px;
}

.page-blog-win66-win-review__payment-list li {
  color: var(--text-main, #F2FFF6);
  font-size: 1.1em;
  position: relative;
  padding-left: 30px;
}

.page-blog-win66-win-review__payment-list li::before {
  content: '✅'; /* Dấu kiểm Unicode */
  position: absolute;
  left: 0;
  color: var(--glow, #57E38D);
  font-size: 1.2em;
  top: -2px;
}

/* Kênh hỗ trợ */
.page-blog-win66-win-review__support-channels {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 30px;
}

.page-blog-win66-win-review__support-channels li {
  color: var(--text-main, #F2FFF6);
  font-size: 1.1em;
  position: relative;
  padding-left: 30px;
}

.page-blog-win66-win-review__support-channels li::before {
  content: '📞'; /* Biểu tượng điện thoại Unicode */
  position: absolute;
  left: 0;
  color: var(--glow, #57E38D);
  font-size: 1.2em;
  top: -2px;
}
.page-blog-win66-win-review__support-channels li:nth-child(1)::before { content: '💬'; } /* Live Chat */
.page-blog-win66-win-review__support-channels li:nth-child(3)::before { content: '📧'; } /* Email */
.page-blog-win66-win-review__support-channels li:nth-child(4)::before { content: '🌐'; } /* Social Media */


/* Lời chứng thực */
.page-blog-win66-win-review__testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-win66-win-review__testimonial-card {
  background-color: var(--card-bg, #11271B);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border, #2E7A4E);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-blog-win66-win-review__testimonial-text {
  color: var(--text-main, #F2FFF6);
  font-style: italic;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-blog-win66-win-review__testimonial-author {
  color: var(--text-secondary, #A7D9B8);
  font-weight: bold;
  text-align: right;
  font-size: 0.9em;
}

/* Phần FAQ */
.page-blog-win66-win-review__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-win66-win-review__faq-item {
  background-color: var(--card-bg, #11271B);
  border: 1px solid var(--border, #2E7A4E);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-win66-win-review__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: var(--deep-green, #0A4B2C); /* Xanh đậm cho nền câu hỏi */
  color: var(--text-main, #F2FFF6);
  font-weight: bold;
  font-size: 1.1em;
  cursor: pointer;
  user-select: none;
}

.page-blog-win66-win-review__faq-item[open] .page-blog-win66-win-review__faq-question {
  background-color: #13994A; /* Màu xanh lá cây hơi sáng hơn khi mở */
}

.page-blog-win66-win-review__faq-question::-webkit-details-marker {
  display: none;
}
.page-blog-win66-win-review__faq-question::marker {
  display: none;
}

.page-blog-win66-win-review__faq-qtext {
  flex-grow: 1;
}

.page-blog-win66-win-review__faq-toggle {
  margin-left: 15px;
  font-size: 1.5em;
  line-height: 1;
  color: var(--glow, #57E38D);
}

.page-blog-win66-win-review__faq-answer {
  padding: 15px 25px 20px;
  color: var(--text-secondary, #A7D9B8);
  font-size: 1em;
  background-color: var(--card-bg, #11271B);
}

.page-blog-win66-win-review__faq-answer p {
  margin-bottom: 10px;
  color: var(--text-secondary, #A7D9B8); /* Đảm bảo màu văn bản trong câu trả lời */
}

.page-blog-win66-win-review__faq-answer p:last-child {
  margin-bottom: 0;
}


/* Thiết kế đáp ứng */
@media (max-width: 1024px) {
  .page-blog-win66-win-review__main-title {
    font-size: clamp(2em, 5vw, 2.8em);
  }

  .page-blog-win66-win-review__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-blog-win66-win-review__hero-section {
    padding-bottom: 40px;
  }

  .page-blog-win66-win-review__hero-image {
    margin-bottom: 20px;
  }

  .page-blog-win66-win-review__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-blog-win66-win-review__description {
    font-size: 1em;
  }

  .page-blog-win66-win-review__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px; /* Thêm khoảng đệm vào vùng chứa nút */
  }

  .page-blog-win66-win-review__btn-primary,
  .page-blog-win66-win-review__btn-secondary,
  .page-blog-win66-win-review__btn-inline {
    width: 100% !important; /* Buộc nút có chiều rộng đầy đủ */
    max-width: 100% !important;
    padding: 15px 20px;
    box-sizing: border-box !important;
  }

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

  .page-blog-win66-win-review__overview-section,
  .page-blog-win66-win-review__features-section,
  .page-blog-win66-win-review__payment-section,
  .page-blog-win66-win-review__testimonials-section,
  .page-blog-win66-win-review__faq-section,
  .page-blog-win66-win-review__guide-section,
  .page-blog-win66-win-review__support-section,
  .page-blog-win66-win-review__conclusion-section {
    padding: 40px 0;
  }

  .page-blog-win66-win-review__container {
    padding: 0 15px;
  }

  .page-blog-win66-win-review__feature-grid,
  .page-blog-win66-win-review__guide-steps,
  .page-blog-win66-win-review__testimonial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-win66-win-review__feature-card img {
     /* Điều chỉnh chiều cao hình ảnh cho di động */
  }

  .page-blog-win66-win-review__payment-list,
  .page-blog-win66-win-review__support-channels {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-left: 20px;
  }

  /* Khả năng phản hồi hình ảnh trên di động */
  .page-blog-win66-win-review img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-win66-win-review__section,
  .page-blog-win66-win-review__card,
  .page-blog-win66-win-review__container,
  .page-blog-win66-win-review__hero-section,
  .page-blog-win66-win-review__overview-section,
  .page-blog-win66-win-review__features-section,
  .page-blog-win66-win-review__guide-section,
  .page-blog-win66-win-review__payment-section,
  .page-blog-win66-win-review__support-section,
  .page-blog-win66-win-review__testimonials-section,
  .page-blog-win66-win-review__faq-section,
  .page-blog-win66-win-review__conclusion-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Quy tắc cụ thể cho phần video nếu nó tồn tại, để nhất quán với các quy tắc chung */
  .page-blog-win66-win-review__video-section {
    padding-top: 10px !important; /* body đã xử lý --header-offset */
  }

  /* Khả năng phản hồi video trên di động (nếu có bất kỳ phần tử video nào) */
  .page-blog-win66-win-review video,
  .page-blog-win66-win-review__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-win66-win-review__video-section,
  .page-blog-win66-win-review__video-container,
  .page-blog-win66-win-review__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-win66-win-review__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}