:root {
    --page-bg-color: #08160F; /* Background */
    --card-bg-color: #11271B; /* Card B G */
    --text-main-color: #F2FFF6; /* Text Main */
    --text-secondary-color: #A7D9B8; /* Text Secondary */
    --border-color: #2E7A4E; /* Border */
    --glow-color: #57E38D; /* Glow */
    --gold-color: #F2C14E; /* Gold */
    --divider-color: #1E3A2A; /* Divider */
    --deep-green-color: #0A4B2C; /* Deep Green */
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
}

.page-blog-vsbet-chinh-thuc-promotions-analysis {
    font-family: Arial, sans-serif;
    color: var(--text-main-color); /* Main text color for the page */
    background-color: var(--page-bg-color); /* Page background */
    line-height: 1.6;
    padding-top: 10px; /* Small top padding for the first section, body handles --header-offset */
}

/* Base container styling */
.page-blog-vsbet-chinh-thuc-promotions-analysis__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-blog-vsbet-chinh-thuc-promotions-analysis__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    text-align: center;
    padding: 40px 0;
    overflow: hidden; /* Ensure content doesn't overflow */
    background-color: var(--card-bg-color); /* Use a brand color for hero section background */
}

.page-blog-vsbet-chinh-thuc-promotions-analysis__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Constrain image width */
    margin-bottom: 30px; /* Space between image and content */
}

.page-blog-vsbet-chinh-thuc-promotions-analysis__hero-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(87, 227, 141, 0.5); /* Glow */
}

.page-blog-vsbet-chinh-thuc-promotions-analysis__hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.page-blog-vsbet-chinh-thuc-promotions-analysis__main-title {
    font-size: clamp(2.2em, 4vw, 3.2em); /* Responsive font size for H1 */
    font-weight: 700;
    line-height: 1.2;
    color: var(--gold-color); /* Gold color for main title */
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.4); /* Subtle glow */
}

.page-blog-vsbet-chinh-thuc-promotions-analysis__description {
    font-size: 1.1em;
    color: var(--text-secondary-color);
    margin-bottom: 30px;
}

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

/* Buttons */
.page-blog-vsbet-chinh-thuc-promotions-analysis__btn-primary,
.page-blog-vsbet-chinh-thuc-promotions-analysis__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Allow long words to break */
    box-sizing: border-box;
    max-width: 100%; /* Ensure button doesn't overflow */
}

.page-blog-vsbet-chinh-thuc-promotions-analysis__btn-primary {
    background: var(--button-gradient);
    color: #ffffff; /* White text for primary button */
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-vsbet-chinh-thuc-promotions-analysis__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-blog-vsbet-chinh-thuc-promotions-analysis__btn-secondary {
    background: transparent;
    color: var(--glow-color); /* Glow color text for secondary button */
    border: 2px solid var(--glow-color);
}

.page-blog-vsbet-chinh-thuc-promotions-analysis__btn-secondary:hover {
    background: var(--glow-color);
    color: var(--page-bg-color); /* Dark text on hover for contrast */
    transform: translateY(-3px);
}

/* Content Sections */
.page-blog-vsbet-chinh-thuc-promotions-analysis__content-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--divider-color);
}

.page-blog-vsbet-chinh-thuc-promotions-analysis__content-section:last-of-type {
    border-bottom: none;
}

.page-blog-vsbet-chinh-thuc-promotions-analysis__section-title {
    font-size: 2.2em;
    font-weight: 700;
    color: var(--gold-color);
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-blog-vsbet-chinh-thuc-promotions-analysis__sub-title {
    font-size: 1.5em;
    font-weight: 600;
    color: var(--glow-color);
    margin-top: 40px;
    margin-bottom: 15px;
}

.page-blog-vsbet-chinh-thuc-promotions-analysis p {
    font-size: 1.05em;
    color: var(--text-secondary-color);
    margin-bottom: 1em;
}

.page-blog-vsbet-chinh-thuc-promotions-analysis__image-wrapper {
    margin: 30px 0;
    text-align: center;
}

.page-blog-vsbet-chinh-thuc-promotions-analysis__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin: 0 auto;
    box-shadow: 0 0 15px rgba(46, 122, 78, 0.3);
}

/* Lists */
.page-blog-vsbet-chinh-thuc-promotions-analysis__list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.page-blog-vsbet-chinh-thuc-promotions-analysis__list li {
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    color: var(--text-main-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.page-blog-vsbet-chinh-thuc-promotions-analysis__list-title {
    font-size: 1.3em;
    color: var(--glow-color);
    margin-top: 0;
    margin-bottom: 10px;
}

/* FAQ Section */
.page-blog-vsbet-chinh-thuc-promotions-analysis__faq-list {
    margin-top: 30px;
}

.page-blog-vsbet-chinh-thuc-promotions-analysis__faq-item {
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--text-main-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.page-blog-vsbet-chinh-thuc-promotions-analysis__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.2em;
    font-weight: 600;
    color: var(--glow-color);
    cursor: pointer;
    background-color: var(--deep-green-color); /* Darker green for question background */
    border-bottom: 1px solid var(--border-color);
}

.page-blog-vsbet-chinh-thuc-promotions-analysis__faq-item[open] .page-blog-vsbet-chinh-thuc-promotions-analysis__faq-question {
    border-bottom: 1px solid transparent; /* Remove border when open */
}

.page-blog-vsbet-chinh-thuc-promotions-analysis__faq-qtext {
    flex-grow: 1;
}

.page-blog-vsbet-chinh-thuc-promotions-analysis__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    user-select: none;
}

.page-blog-vsbet-chinh-thuc-promotions-analysis__faq-answer {
    padding: 0 25px 20px;
    color: var(--text-secondary-color);
    font-size: 1em;
}

.page-blog-vsbet-chinh-thuc-promotions-analysis__faq-answer p {
    margin-top: 15px;
    margin-bottom: 0;
}

/* Custom styles for details/summary */
.page-blog-vsbet-chinh-thuc-promotions-analysis__faq-item summary {
    list-style: none; /* Remove default marker */
}

.page-blog-vsbet-chinh-thuc-promotions-analysis__faq-item summary::-webkit-details-marker {
    display: none; /* Remove default marker for Webkit */
}

/* Conclusion Section */
.page-blog-vsbet-chinh-thuc-promotions-analysis__conclusion {
    text-align: center;
    padding-bottom: 80px;
}

.page-blog-vsbet-chinh-thuc-promotions-analysis__cta-bottom {
    margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-blog-vsbet-chinh-thuc-promotions-analysis__main-title {
        font-size: clamp(2em, 5vw, 2.8em);
    }
}

@media (max-width: 768px) {
    .page-blog-vsbet-chinh-thuc-promotions-analysis {
        font-size: 16px;
        line-height: 1.6;
        padding-top: 10px !important; /* body handles --header-offset */
    }

    .page-blog-vsbet-chinh-thuc-promotions-analysis__container {
        padding: 0 15px; /* Smaller padding on mobile */
    }

    .page-blog-vsbet-chinh-thuc-promotions-analysis__hero-section {
        padding: 30px 0;
    }

    .page-blog-vsbet-chinh-thuc-promotions-analysis__hero-content {
        padding: 0 15px;
    }

    .page-blog-vsbet-chinh-thuc-promotions-analysis__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em); /* Smaller H1 on mobile */
    }

    .page-blog-vsbet-chinh-thuc-promotions-analysis__description {
        font-size: 1em;
    }

    .page-blog-vsbet-chinh-thuc-promotions-analysis__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 15px; /* Add padding to button container */
    }

    .page-blog-vsbet-chinh-thuc-promotions-analysis__btn-primary,
    .page-blog-vsbet-chinh-thuc-promotions-analysis__btn-secondary {
        width: 100% !important; /* Full width buttons */
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        white-space: normal !important;
        word-wrap: break-word !important;
        box-sizing: border-box !important;
    }
    
    .page-blog-vsbet-chinh-thuc-promotions-analysis__content-section {
        padding: 40px 0;
    }

    .page-blog-vsbet-chinh-thuc-promotions-analysis__section-title {
        font-size: 1.8em;
        margin-bottom: 25px;
    }

    .page-blog-vsbet-chinh-thuc-promotions-analysis__sub-title {
        font-size: 1.3em;
        margin-top: 30px;
    }

    /* Images responsiveness */
    .page-blog-vsbet-chinh-thuc-promotions-analysis img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        box-sizing: border-box !important;
    }

    .page-blog-vsbet-chinh-thuc-promotions-analysis__image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        padding: 0 15px; /* Add padding to image container */
    }

    .page-blog-vsbet-chinh-thuc-promotions-analysis__card,
    .page-blog-vsbet-chinh-thuc-promotions-analysis__list li,
    .page-blog-vsbet-chinh-thuc-promotions-analysis__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-vsbet-chinh-thuc-promotions-analysis__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }

    .page-blog-vsbet-chinh-thuc-promotions-analysis__faq-answer {
        padding: 0 20px 15px;
    }
}