:root {
    --primary-color: #11A84E; /* Main brand color */
    --secondary-color: #22C768; /* Auxiliary brand color */
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button specific gradient */
    --card-bg: #11271B; /* Card background */
    --page-bg: #08160F; /* Page background */
    --text-main: #F2FFF6; /* Main text color */
    --text-secondary: #A7D9B8; /* Secondary text color */
    --border-color: #2E7A4E; /* Border color */
    --glow-color: #57E38D; /* Glow effect color */
    --gold-color: #F2C14E; /* Gold accent color */
    --divider-color: #1E3A2A; /* Divider color */
    --deep-green-color: #0A4B2C; /* Deep green color */
}

.page-blog-hello88-latest-promotions-analysis {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main); /* Light text for dark body background */
    background-color: var(--page-bg); /* Dark background */
}

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

/* Hero Section */
.page-blog-hello88-latest-promotions-analysis__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Enforce image on top, text below */
    align-items: center;
    padding-top: 10px; /* Small padding, body handles header offset */
    background-color: var(--page-bg);
}

.page-blog-hello88-latest-promotions-analysis__hero-image-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.page-blog-hello88-latest-promotions-analysis__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-blog-hello88-latest-promotions-analysis__hero-content {
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
    width: 100%; /* Ensure content block is full width for responsiveness */
    box-sizing: border-box;
}

.page-blog-hello88-latest-promotions-analysis__main-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem); /* Responsive font size for H1 */
    color: var(--gold-color);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-blog-hello88-latest-promotions-analysis__intro-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.page-blog-hello88-latest-promotions-analysis__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-blog-hello88-latest-promotions-analysis__btn-primary,
.page-blog-hello88-latest-promotions-analysis__btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-sizing: border-box; /* Ensure padding is included in width */
    max-width: 100%; /* Responsive button width */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words */
}

.page-blog-hello88-latest-promotions-analysis__btn-primary {
    background: var(--button-gradient);
    color: #ffffff;
    border: 2px solid transparent;
}

.page-blog-hello88-latest-promotions-analysis__btn-primary:hover {
    opacity: 0.9;
    box-shadow: 0 0 15px var(--glow-color);
}

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

.page-blog-hello88-latest-promotions-analysis__btn-secondary:hover {
    background: var(--gold-color);
    color: var(--page-bg);
}

/* Content Sections */
.page-blog-hello88-latest-promotions-analysis__content-section {
    padding: 60px 0;
    background-color: var(--page-bg); /* Default dark background */
}

.page-blog-hello88-latest-promotions-analysis__dark-bg {
    background-color: var(--page-bg);
    color: var(--text-main);
}

.page-blog-hello88-latest-promotions-analysis__section-title {
    font-size: 2.2rem;
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    padding: 0 20px;
}

.page-blog-hello88-latest-promotions-analysis__sub-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog-hello88-latest-promotions-analysis__sub-sub-title {
    font-size: 1.4rem;
    color: var(--text-main);
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-blog-hello88-latest-promotions-analysis__text-block {
    margin-bottom: 30px;
    padding: 0 20px;
}

.page-blog-hello88-latest-promotions-analysis p {
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.page-blog-hello88-latest-promotions-analysis ul,
.page-blog-hello88-latest-promotions-analysis ol {
    margin-bottom: 15px;
    padding-left: 25px;
    color: var(--text-secondary);
}

.page-blog-hello88-latest-promotions-analysis li {
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.page-blog-hello88-latest-promotions-analysis a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-blog-hello88-latest-promotions-analysis a:hover {
    color: var(--glow-color);
}

.page-blog-hello88-latest-promotions-analysis__content-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin: 30px auto;
    max-width: 100%; /* Ensure images are responsive */
    object-fit: cover;
}

.page-blog-hello88-latest-promotions-analysis__image-wrapper {
    width: 100%;
    max-width: 800px; /* Example max-width for content images */
    margin: 30px auto;
    overflow: hidden;
    box-sizing: border-box;
    border-radius: 8px;
}

/* FAQ Section */
.page-blog-hello88-latest-promotions-analysis__faq-list {
    margin-top: 40px;
    padding: 0 20px;
}

.page-blog-hello88-latest-promotions-analysis__faq-item {
    background-color: var(--card-bg); /* Dark card background */
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--text-main);
}

.page-blog-hello88-latest-promotions-analysis__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--primary-color);
    cursor: pointer;
    background-color: var(--deep-green-color);
    transition: background-color 0.3s ease;
    list-style: none; /* For details/summary */
}

.page-blog-hello88-latest-promotions-analysis__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker for Chrome */
}

.page-blog-hello88-latest-promotions-analysis__faq-item[open] .page-blog-hello88-latest-promotions-analysis__faq-question {
    background-color: var(--primary-color);
    color: #ffffff;
}

.page-blog-hello88-latest-promotions-analysis__faq-question:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

.page-blog-hello88-latest-promotions-analysis__faq-qtext {
    flex-grow: 1;
}

.page-blog-hello88-latest-promotions-analysis__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.page-blog-hello88-latest-promotions-analysis__faq-item[open] .page-blog-hello88-latest-promotions-analysis__faq-toggle {
    transform: rotate(45deg); /* Rotate plus to cross */
}

.page-blog-hello88-latest-promotions-analysis__faq-answer {
    padding: 20px 25px;
    font-size: 1rem;
    color: var(--text-secondary);
    background-color: var(--card-bg);
}

/* Conclusion Section */
.page-blog-hello88-latest-promotions-analysis__conclusion-section {
    text-align: center;
    padding: 60px 0;
    background-color: var(--deep-green-color);
}

.page-blog-hello88-latest-promotions-analysis__conclusion-text {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 40px;
    padding: 0 20px;
}

.page-blog-hello88-latest-promotions-analysis__btn-block {
    display: block;
    width: fit-content;
    margin: 30px auto 0 auto;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-hello88-latest-promotions-analysis__main-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    .page-blog-hello88-latest-promotions-analysis__section-title {
        font-size: 2rem;
    }
    .page-blog-hello88-latest-promotions-analysis__sub-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .page-blog-hello88-latest-promotions-analysis {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-hello88-latest-promotions-analysis__hero-content {
        padding: 30px 15px;
    }

    .page-blog-hello88-latest-promotions-analysis__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .page-blog-hello88-latest-promotions-analysis__intro-text {
        font-size: 1rem;
    }

    .page-blog-hello88-latest-promotions-analysis__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }

    .page-blog-hello88-latest-promotions-analysis__btn-primary,
    .page-blog-hello88-latest-promotions-analysis__btn-secondary {
        width: 100% !important; /* Force full width on mobile */
        max-width: 100% !important;
        padding: 12px 15px !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-blog-hello88-latest-promotions-analysis__content-section {
        padding: 40px 0;
    }

    .page-blog-hello88-latest-promotions-analysis__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .page-blog-hello88-latest-promotions-analysis__sub-title {
        font-size: 1.4rem;
    }

    .page-blog-hello88-latest-promotions-analysis__sub-sub-title {
        font-size: 1.2rem;
    }

    .page-blog-hello88-latest-promotions-analysis__text-block {
        padding: 0 15px;
    }

    /* Mobile image responsive adaptations */
    .page-blog-hello88-latest-promotions-analysis img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-blog-hello88-latest-promotions-analysis__section,
    .page-blog-hello88-latest-promotions-analysis__card,
    .page-blog-hello88-latest-promotions-analysis__container,
    .page-blog-hello88-latest-promotions-analysis__image-wrapper,
    .page-blog-hello88-latest-promotions-analysis__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Ensure no overflow */
    }

    .page-blog-hello88-latest-promotions-analysis__hero-section {
      padding-top: 10px !important; /* body already handles --header-offset */
    }

    /* FAQ for mobile */
    .page-blog-hello88-latest-promotions-analysis__faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }
    .page-blog-hello88-latest-promotions-analysis__faq-answer {
        padding: 15px 20px;
    }

    .page-blog-hello88-latest-promotions-analysis__conclusion-text {
        font-size: 1rem;
        padding: 0 15px;
    }
}