/* style/blog-benvip-web-new-features.css */
/* body đã padding-top: var(--header-offset)；trang này cấm viết lại biến đó */
.page-blog-benvip-web-new-features {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

.page-blog-benvip-web-new-features__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* body đã xử lý padding-top, chỉ cần 10px trang trí */
  background-color: #08160F;
  overflow: hidden;
}

.page-blog-benvip-web-new-features__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-benvip-web-new-features__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Để chữ dễ đọc hơn */
}

.page-blog-benvip-web-new-features__hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 20px;
  margin-top: -150px; /* Di chuyển nội dung lên trên ảnh một chút nhưng không che phủ */
  background: rgba(17, 40, 27, 0.7); /* Card BG với độ trong suốt */
  border-radius: 10px;
  backdrop-filter: blur(5px);
  border: 1px solid #2E7A4E; /* Border */
}

.page-blog-benvip-web-new-features__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-blog-benvip-web-new-features__hero-description {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-blog-benvip-web-new-features__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.page-blog-benvip-web-new-features__btn-primary,
.page-blog-benvip-web-new-features__btn-secondary {
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-blog-benvip-web-new-features__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-benvip-web-new-features__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-blog-benvip-web-new-features__btn-secondary {
  background: transparent;
  color: #57E38D; /* Glow */
  border: 2px solid #57E38D;
}

.page-blog-benvip-web-new-features__btn-secondary:hover {
  background: rgba(87, 227, 141, 0.1);
  color: #F2FFF6;
  border-color: #F2FFF6;
  transform: translateY(-2px);
}

.page-blog-benvip-web-new-features__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #08160F;
}

.page-blog-benvip-web-new-features__dark-section {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-blog-benvip-web-new-features__section-title {
  font-size: 2.5rem;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.page-blog-benvip-web-new-features__sub-title {
  font-size: 1.8rem;
  color: #57E38D; /* Glow */
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-blog-benvip-web-new-features__paragraph {
  font-size: 1.05rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-blog-benvip-web-new-features__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.page-blog-benvip-web-new-features__feature-card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-benvip-web-new-features__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(87, 227, 141, 0.3);
}

.page-blog-benvip-web-new-features__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-blog-benvip-web-new-features__card-title {
  font-size: 1.3rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-benvip-web-new-features__card-description {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-benvip-web-new-features__content-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  margin: 30px auto;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
}

.page-blog-benvip-web-new-features__promo-list,
.page-blog-benvip-web-new-features__step-list,
.page-blog-benvip-web-new-features__app-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.page-blog-benvip-web-new-features__promo-item,
.page-blog-benvip-web-new-features__step-item,
.page-blog-benvip-web-new-features__app-item {
  font-size: 1.05rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.page-blog-benvip-web-new-features__promo-item::before,
.page-blog-benvip-web-new-features__step-item::before,
.page-blog-benvip-web-new-features__app-item::before {
  content: '✓';
  color: #57E38D; /* Glow */
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-blog-benvip-web-new-features__step-item::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  background-color: #13994A; /* Deep Green */
  color: #F2FFF6;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.9rem;
  left: 0;
  top: 0;
}

.page-blog-benvip-web-new-features__step-list {
  counter-reset: step-counter;
}

.page-blog-benvip-web-new-features__cta-center {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-blog-benvip-web-new-features__faq-list {
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-blog-benvip-web-new-features__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-blog-benvip-web-new-features__faq-item[open] {
  background-color: #0A4B2C; /* Deep Green */
}

.page-blog-benvip-web-new-features__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  transition: color 0.3s ease;
  list-style: none;
}

.page-blog-benvip-web-new-features__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-benvip-web-new-features__faq-question:hover {
  color: #F2C14E; /* Gold */
}

.page-blog-benvip-web-new-features__faq-toggle {
  font-size: 1.8rem;
  font-weight: bold;
  color: #57E38D; /* Glow */
  line-height: 1;
  margin-left: 15px;
}

.page-blog-benvip-web-new-features__faq-item[open] .page-blog-benvip-web-new-features__faq-toggle {
  color: #F2C14E; /* Gold */
}

.page-blog-benvip-web-new-features__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-benvip-web-new-features__faq-answer p {
  margin-bottom: 0;
}

/* Media Queries cho thiết bị di động */
@media (max-width: 768px) {
  .page-blog-benvip-web-new-features {
    font-size: 16px;
    line-height: 1.65;
  }

  .page-blog-benvip-web-new-features__hero-section {
    padding-bottom: 40px;
  }

  .page-blog-benvip-web-new-features__hero-content {
    margin-top: -80px;
    padding: 15px;
  }

  .page-blog-benvip-web-new-features__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-blog-benvip-web-new-features__hero-description {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .page-blog-benvip-web-new-features__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }

  .page-blog-benvip-web-new-features__btn-primary,
  .page-blog-benvip-web-new-features__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-blog-benvip-web-new-features__content-area {
    padding: 30px 15px;
  }

  .page-blog-benvip-web-new-features__section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .page-blog-benvip-web-new-features__sub-title {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-blog-benvip-web-new-features__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-benvip-web-new-features__feature-card {
    padding: 20px;
  }

  .page-blog-benvip-web-new-features__card-image {
    height: 180px;
  }

  .page-blog-benvip-web-new-features__content-image {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    padding-left: 0;
    padding-right: 0;
  }

  .page-blog-benvip-web-new-features__promo-item,
  .page-blog-benvip-web-new-features__step-item,
  .page-blog-benvip-web-new-features__app-item {
    font-size: 1rem;
    padding-left: 25px;
  }

  .page-blog-benvip-web-new-features__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-blog-benvip-web-new-features__faq-answer {
    padding: 0 20px 15px 20px;
    font-size: 0.95rem;
  }

  /* Tất cả hình ảnh phải thích ứng với chiều rộng màn hình */
  .page-blog-benvip-web-new-features img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Tất cả các container chứa hình ảnh phải thích ứng */
  .page-blog-benvip-web-new-features__section,
  .page-blog-benvip-web-new-features__card,
  .page-blog-benvip-web-new-features__container,
  .page-blog-benvip-web-new-features__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-blog-benvip-web-new-features__content-area {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-benvip-web-new-features__hero-section {
    padding-top: 10px !important; /* body đã xử lý --header-offset, chỗ này chỉ 10px */
  }

  /* Video responsive rules (not used in this page, but for completeness) */
  .page-blog-benvip-web-new-features video,
  .page-blog-benvip-web-new-features__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-benvip-web-new-features__video-section,
  .page-blog-benvip-web-new-features__video-container,
  .page-blog-benvip-web-new-features__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-benvip-web-new-features__video-section {
    padding-top: 10px !important;
  }
}