.page-blog-w688-app-new-features {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

.page-blog-w688-app-new-features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-w688-app-new-features__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  background-color: #08160F;
  overflow: hidden;
}

.page-blog-w688-app-new-features__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-w688-app-new-features__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-blog-w688-app-new-features__hero-content {
  position: relative;
  text-align: center;
  padding: 40px 20px;
  z-index: 1;
  max-width: 800px;
  margin-top: -100px; /* Adjust to move content slightly up over image if needed, but not overlay */
  background-color: transparent; /* Ensure no overlay background */
}

.page-blog-w688-app-new-features__main-title {
  color: #F2C14E; /* Gold */
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.page-blog-w688-app-new-features__intro-text {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1.15rem;
  margin-bottom: 30px;
}

.page-blog-w688-app-new-features__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-blog-w688-app-new-features__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-blog-w688-app-new-features__cta-button--secondary {
  background: transparent;
  border: 2px solid #2AD16F;
  color: #2AD16F;
}

.page-blog-w688-app-new-features__cta-button--secondary:hover {
  background: #2AD16F;
  color: #08160F;
}

.page-blog-w688-app-new-features__section {
  padding: 60px 0;
  background-color: #08160F;
}

.page-blog-w688-app-new-features__section-title {
  color: #F2C14E; /* Gold */
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-blog-w688-app-new-features__paragraph {
  color: #F2FFF6; /* Text Main */
  font-size: 1.1rem;
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-w688-app-new-features__feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
  padding: 20px;
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-w688-app-new-features__feature-image,
.page-blog-w688-app-new-features__card-image,
.page-blog-w688-app-new-features__promo-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-w688-app-new-features__feature-title,
.page-blog-w688-app-new-features__card-title {
  color: #57E38D; /* Glow */
  font-size: 1.8rem;
  margin-bottom: 15px;
  text-align: center;
}

.page-blog-w688-app-new-features__content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-w688-app-new-features__card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #F2FFF6;
}

.page-blog-w688-app-new-features__ordered-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.page-blog-w688-app-new-features__ordered-list li {
  background-color: #11271B; /* Card BG */
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid #2AD16F;
  border-radius: 5px;
  color: #F2FFF6;
  font-size: 1.1rem;
}

.page-blog-w688-app-new-features__list-item-title {
  color: #F2C14E; /* Gold */
  display: block;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.page-blog-w688-app-new-features__faq-list {
  margin-top: 30px;
}

.page-blog-w688-app-new-features__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.page-blog-w688-app-new-features__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
  font-size: 1.15rem;
  background-color: #0A4B2C; /* Deep Green */
}

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

.page-blog-w688-app-new-features__faq-question .page-blog-w688-app-new-features__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #2AD16F;
}

.page-blog-w688-app-new-features__faq-item[open] .page-blog-w688-app-new-features__faq-question .page-blog-w688-app-new-features__faq-toggle {
  transform: rotate(45deg);
}

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

/* Divider style */
.page-blog-w688-app-new-features__divider {
  height: 2px;
  background-color: #1E3A2A; /* Divider */
  margin: 50px auto;
  width: 80%;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-w688-app-new-features__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-blog-w688-app-new-features__section-title {
    font-size: 2rem;
  }
  .page-blog-w688-app-new-features__feature-title,
  .page-blog-w688-app-new-features__card-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .page-blog-w688-app-new-features {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-w688-app-new-features__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-blog-w688-app-new-features__hero-content {
    padding: 20px 15px;
    margin-top: -50px; /* Adjust for smaller screens */
  }

  .page-blog-w688-app-new-features__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-blog-w688-app-new-features__intro-text {
    font-size: 1rem;
  }

  .page-blog-w688-app-new-features__cta-button {
    padding: 12px 25px;
    font-size: 0.95rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-w688-app-new-features__section {
    padding: 40px 0;
  }

  .page-blog-w688-app-new-features__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .page-blog-w688-app-new-features__paragraph {
    font-size: 1rem;
  }

  .page-blog-w688-app-new-features__feature-item,
  .page-blog-w688-app-new-features__card {
    padding: 20px;
    margin-bottom: 40px;
  }

  .page-blog-w688-app-new-features__feature-image,
  .page-blog-w688-app-new-features__card-image,
  .page-blog-w688-app-new-features__promo-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-blog-w688-app-new-features__container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-blog-w688-app-new-features__content-grid {
    grid-template-columns: 1fr;
  }

  .page-blog-w688-app-new-features__feature-title,
  .page-blog-w688-app-new-features__card-title {
    font-size: 1.4rem;
  }

  .page-blog-w688-app-new-features__ordered-list li {
    font-size: 1rem;
    padding: 15px;
  }

  .page-blog-w688-app-new-features__list-item-title {
    font-size: 1.1rem;
  }

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

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

  .page-blog-w688-app-new-features__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-blog-w688-app-new-features__video-section {
    padding-top: 10px !important;
  }
}