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

.page-blog-88clup-app-latest-features {
    font-family: 'Arial', sans-serif;
    color: var(--text-main); /* Default text color for the page */
    background-color: var(--bg-color); /* Page background color */
}

/* Base styles for sections */
.page-blog-88clup-app-latest-features__section {
    padding: 60px 20px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.page-blog-88clup-app-latest-features__section-title {
    font-size: 2.5em;
    font-weight: bold;
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 0.05em;
}

.page-blog-88clup-app-latest-features__content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1.1em;
    color: var(--text-main);
}

.page-blog-88clup-app-latest-features__content-wrapper p {
    margin-bottom: 20px;
}

.page-blog-88clup-app-latest-features__content-wrapper strong {
    color: var(--gold-color);
}

/* Hero Section */
.page-blog-88clup-app-latest-features__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 60px;
    background-color: var(--deep-green);
    overflow: hidden; /* Ensure content doesn't overflow */
}

.page-blog-88clup-app-latest-features__hero-image-wrapper {
    width: 100%;
    max-height: 70vh; /* Limit height to prevent excessively tall images on large screens */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-blog-88clup-app-latest-features__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.7); /* Slightly darken image for better text contrast if text were on it, but here it's below */
}

.page-blog-88clup-app-latest-features__hero-content {
    max-width: 900px;
    margin: 40px auto 0;
    text-align: center;
    padding: 0 20px;
    z-index: 10;
}

.page-blog-88clup-app-latest-features__main-title {
    font-weight: bold;
    color: var(--gold-color);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    font-size: clamp(2em, 5vw, 3.5em); /* Responsive font size for H1 */
}

.page-blog-88clup-app-latest-features__description {
    font-size: 1.2em;
    color: var(--text-main);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-88clup-app-latest-features__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%; /* Ensure container takes full width for responsive button wrapping */
    max-width: 600px; /* Limit button container width */
    margin: 0 auto;
}

.page-blog-88clup-app-latest-features__btn-primary,
.page-blog-88clup-app-latest-features__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%; /* Ensure button adapts to container width */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words */
}

.page-blog-88clup-app-latest-features__btn-primary {
    background: var(--btn-gradient);
    color: #ffffff; /* White text for primary button */
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-88clup-app-latest-features__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-88clup-app-latest-features__btn-secondary {
    background-color: transparent;
    color: var(--gold-color);
    border: 2px solid var(--gold-color);
}

.page-blog-88clup-app-latest-features__btn-secondary:hover {
    background-color: var(--gold-color);
    color: var(--card-bg);
    transform: translateY(-2px);
}

/* Introduction Section */
.page-blog-88clup-app-latest-features__introduction {
    background-color: var(--card-bg);
    border-bottom: 1px solid var(--divider-color);
}

.page-blog-88clup-app-latest-features__introduction .page-blog-88clup-app-latest-features__image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Features Section */
.page-blog-88clup-app-latest-features__features {
    background-color: var(--bg-color);
    border-bottom: 1px solid var(--divider-color);
}

.page-blog-88clup-app-latest-features__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-blog-88clup-app-latest-features__feature-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-blog-88clup-app-latest-features__feature-title {
    font-size: 1.5em;
    color: var(--gold-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog-88clup-app-latest-features__feature-image {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-88clup-app-latest-features__feature-card p {
    font-size: 1em;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Benefits Section */
.page-blog-88clup-app-latest-features__benefits {
    background-color: var(--card-bg);
    border-bottom: 1px solid var(--divider-color);
}

.page-blog-88clup-app-latest-features__benefit-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.page-blog-88clup-app-latest-features__benefit-list li {
    background-color: var(--deep-green);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--text-main);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-blog-88clup-app-latest-features__benefit-list li::before {
    content: '✅';
    font-size: 1.2em;
    color: var(--glow-color);
    flex-shrink: 0;
}

.page-blog-88clup-app-latest-features__benefit-item-title {
    color: var(--gold-color);
    font-size: 1.1em;
    margin-right: 5px;
}


/* Download Guide Section */
.page-blog-88clup-app-latest-features__download-guide {
    background-color: var(--bg-color);
    border-bottom: 1px solid var(--divider-color);
}

.page-blog-88clup-app-latest-features__step-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
    max-width: 800px;
    margin: 30px auto;
}

.page-blog-88clup-app-latest-features__step-list li {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px 25px;
    margin-bottom: 20px;
    position: relative;
    color: var(--text-main);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-blog-88clup-app-latest-features__step-list li::before {
    counter-increment: step-counter;
    content: "Bước " counter(step-counter) ": ";
    font-weight: bold;
    color: var(--gold-color);
    position: absolute;
    left: 20px;
    top: 20px;
}

.page-blog-88clup-app-latest-features__step-title {
    display: block;
    margin-left: 80px; /* Adjust for step number */
    font-size: 1.2em;
    color: var(--gold-color);
    margin-bottom: 10px;
}

.page-blog-88clup-app-latest-features__step-list li p {
    margin-left: 80px;
    margin-top: 10px;
    margin-bottom: 0;
}

.page-blog-88clup-app-latest-features__sub-step-list {
    list-style: disc;
    margin-left: 100px; /* Indent sub-steps further */
    margin-top: 10px;
    color: var(--text-secondary);
}

.page-blog-88clup-app-latest-features__sub-step-list li {
    background-color: transparent;
    border: none;
    padding: 5px 0;
    margin-bottom: 5px;
    box-shadow: none;
    position: relative;
    color: var(--text-secondary);
}

.page-blog-88clup-app-latest-features__sub-step-list li::before {
    content: '';
    position: static;
}

.page-blog-88clup-app-latest-features__link {
    color: var(--glow-color);
    text-decoration: underline;
}

.page-blog-88clup-app-latest-features__link:hover {
    color: var(--gold-color);
}

/* FAQ Section */
.page-blog-88clup-app-latest-features__faq-section {
    background-color: var(--card-bg);
    border-bottom: 1px solid var(--divider-color);
}

.page-blog-88clup-app-latest-features__faq-list {
    max-width: 1000px;
    margin: 0 auto;
}

.page-blog-88clup-app-latest-features__faq-item {
    background-color: var(--deep-green);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-blog-88clup-app-latest-features__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--gold-color);
    cursor: pointer;
    background-color: var(--deep-green);
    transition: background-color 0.3s ease;
    list-style: none; /* For details/summary */
    -webkit-touch-callout: none; /* Disable text selection on iOS */
    -webkit-user-select: none;   /* Disable text selection on iOS */
    -moz-user-select: none;      /* Disable text selection on Firefox */
    -ms-user-select: none;       /* Disable text selection on IE/Edge */
    user-select: none;           /* Standard property */
}

/* Hide default details marker */
.page-blog-88clup-app-latest-features__faq-item summary::-webkit-details-marker {
    display: none;
}
.page-blog-88clup-app-latest-features__faq-item summary::marker {
    display: none;
}

.page-blog-88clup-app-latest-features__faq-question:hover {
    background-color: rgba(var(--gold-color), 0.1); /* Subtle hover effect */
}

.page-blog-88clup-app-latest-features__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: var(--glow-color);
}

.page-blog-88clup-app-latest-features__faq-answer {
    padding: 0 25px 20px;
    font-size: 1.1em;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Conclusion Section */
.page-blog-88clup-app-latest-features__conclusion {
    background-color: var(--deep-green);
    text-align: center;
    padding-bottom: 80px;
}

.page-blog-88clup-app-latest-features__conclusion .page-blog-88clup-app-latest-features__content-wrapper {
    max-width: 900px;
}

/* General image styling for content area */
.page-blog-88clup-app-latest-features__content-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    /* No filter on images */
}

/* Ensure content area images maintain minimum size */
.page-blog-88clup-app-latest-features__content-wrapper img,
.page-blog-88clup-app-latest-features__feature-image {
  min-width: 200px;
  min-height: 200px;
}

/* Video specific CSS - although no video is added to HTML, keeping this for completeness as per instructions */
.page-blog-88clup-app-latest-features__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: var(--deep-green);
}

.page-blog-88clup-app-latest-features__video-container {
  width: 100%; /* Desktop width: 100% */
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  overflow: hidden;
}

.page-blog-88clup-app-latest-features__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  width: 100%; /* Ensure wrapper takes full width */
}

.page-blog-88clup-app-latest-features__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-blog-88clup-app-latest-features__section-title {
        font-size: 2em;
    }

    .page-blog-88clup-app-latest-features__main-title {
        font-size: clamp(1.8em, 7vw, 3em);
    }
}

@media (max-width: 768px) {
    .page-blog-88clup-app-latest-features__section {
        padding: 40px 15px;
    }

    .page-blog-88clup-app-latest-features__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-blog-88clup-app-latest-features__main-title {
        font-size: clamp(1.5em, 8vw, 2.5em);
    }

    .page-blog-88clup-app-latest-features__description {
        font-size: 1em;
    }

    .page-blog-88clup-app-latest-features__cta-buttons {
        flex-direction: column;
        gap: 15px;
        max-width: 100% !important; /* Ensure button container takes full width */
        padding: 0 15px;
    }

    .page-blog-88clup-app-latest-features__btn-primary,
    .page-blog-88clup-app-latest-features__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
    }

    /* Images */
    .page-blog-88clup-app-latest-features img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        box-sizing: border-box !important;
    }

    .page-blog-88clup-app-latest-features__hero-image-wrapper,
    .page-blog-88clup-app-latest-features__introduction .page-blog-88clup-app-latest-features__image,
    .page-blog-88clup-app-latest-features__feature-image {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-blog-88clup-app-latest-features__feature-grid {
        grid-template-columns: 1fr;
    }

    .page-blog-88clup-app-latest-features__content-wrapper {
        padding: 0 10px;
    }

    .page-blog-88clup-app-latest-features__benefit-list li,
    .page-blog-88clup-app-latest-features__step-list li {
        padding: 15px 20px;
    }

    .page-blog-88clup-app-latest-features__step-list li::before {
        font-size: 1em;
        left: 15px;
        top: 15px;
    }

    .page-blog-88clup-app-latest-features__step-title {
        margin-left: 60px;
        font-size: 1.1em;
    }

    .page-blog-88clup-app-latest-features__step-list li p {
        margin-left: 60px;
    }

    .page-blog-88clup-app-latest-features__sub-step-list {
        margin-left: 80px;
    }

    .page-blog-88clup-app-latest-features__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }

    .page-blog-88clup-app-latest-features__faq-answer {
        padding: 0 20px 15px;
        font-size: 1em;
    }

    .page-blog-88clup-app-latest-features__video-section {
        padding-top: 10px !important; /* body 已承担 --header-offset，此处禁止 var(--header-offset) */
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-blog-88clup-app-latest-features__video-container,
    .page-blog-88clup-app-latest-features__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-blog-88clup-app-latest-features__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
}

@media (max-width: 480px) {
    .page-blog-88clup-app-latest-features__section {
        padding: 30px 10px;
    }

    .page-blog-88clup-app-latest-features__section-title {
        font-size: 1.5em;
        margin-bottom: 20px;
    }

    .page-blog-88clup-app-latest-features__main-title {
        font-size: clamp(1.2em, 9vw, 2em);
    }
}