/* style/blog-hz88-chinh-thuc-promotion-guide.css */
:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --bg-dark: #08160F;
    --card-bg: #11271B;
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --button-gradient-start: #2AD16F;
    --button-gradient-end: #13994A;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green: #0A4B2C;
}

.page-blog-hz88-chinh-thuc-promotion-guide {
    color: var(--text-main);
    background-color: var(--bg-dark);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-blog-hz88-chinh-thuc-promotion-guide__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding as body handles --header-offset */
    padding-bottom: 60px;
    text-align: center;
}

.page-blog-hz88-chinh-thuc-promotion-guide__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.page-blog-hz88-chinh-thuc-promotion-guide__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 500px;
}

.page-blog-hz88-chinh-thuc-promotion-guide__hero-content {
    max-width: 900px;
    margin: 40px auto 0;
    padding: 0 20px;
}

.page-blog-hz88-chinh-thuc-promotion-guide__main-title {
    font-size: clamp(2em, 4vw, 3em);
    font-weight: bold;
    color: var(--gold-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.page-blog-hz88-chinh-thuc-promotion-guide__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-blog-hz88-chinh-thuc-promotion-guide__btn-primary,
.page-blog-hz88-chinh-thuc-promotion-guide__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.05em;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-hz88-chinh-thuc-promotion-guide__btn-primary {
    background: linear-gradient(180deg, var(--button-gradient-start) 0%, var(--button-gradient-end) 100%);
    color: var(--text-main);
    border: 2px solid var(--button-gradient-start);
    box-shadow: 0 0 15px var(--glow-color);
}

.page-blog-hz88-chinh-thuc-promotion-guide__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px var(--glow-color);
}

.page-blog-hz88-chinh-thuc-promotion-guide__btn-secondary {
    background-color: transparent;
    color: var(--button-gradient-start);
    border: 2px solid var(--button-gradient-start);
}

.page-blog-hz88-chinh-thuc-promotion-guide__btn-secondary:hover {
    background-color: var(--button-gradient-start);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.page-blog-hz88-chinh-thuc-promotion-guide__section {
    padding: 60px 0;
    position: relative;
}

.page-blog-hz88-chinh-thuc-promotion-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-hz88-chinh-thuc-promotion-guide__section-title {
    font-size: 2.5em;
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.3;
}

.page-blog-hz88-chinh-thuc-promotion-guide__text-block {
    font-size: 1.1em;
    color: var(--text-secondary);
    margin-bottom: 20px;
    text-align: justify;
}

.page-blog-hz88-chinh-thuc-promotion-guide__promotion-categories .page-blog-hz88-chinh-thuc-promotion-guide__section-title {
    color: var(--gold-color);
}

.page-blog-hz88-chinh-thuc-promotion-guide__card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-blog-hz88-chinh-thuc-promotion-guide__card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.page-blog-hz88-chinh-thuc-promotion-guide__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-blog-hz88-chinh-thuc-promotion-guide__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.page-blog-hz88-chinh-thuc-promotion-guide__card-title {
    font-size: 1.5em;
    color: var(--text-main);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog-hz88-chinh-thuc-promotion-guide__card-text {
    color: var(--text-secondary);
    font-size: 0.95em;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-blog-hz88-chinh-thuc-promotion-guide__card-btn {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(180deg, var(--button-gradient-start) 0%, var(--button-gradient-end) 100%);
    color: var(--text-main);
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-hz88-chinh-thuc-promotion-guide__card-btn:hover {
    background: var(--deep-green);
}

.page-blog-hz88-chinh-thuc-promotion-guide__how-to-claim .page-blog-hz88-chinh-thuc-promotion-guide__section-title {
    color: var(--gold-color);
}

.page-blog-hz88-chinh-thuc-promotion-guide__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-blog-hz88-chinh-thuc-promotion-guide__step-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.page-blog-hz88-chinh-thuc-promotion-guide__step-icon {
    width: 60px;
    height: 60px;
    background-color: var(--button-gradient-start);
    color: var(--text-main);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 0 10px var(--glow-color);
}

.page-blog-hz88-chinh-thuc-promotion-guide__step-title {
    font-size: 1.4em;
    color: var(--text-main);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-blog-hz88-chinh-thuc-promotion-guide__step-text {
    color: var(--text-secondary);
    font-size: 0.95em;
}

.page-blog-hz88-chinh-thuc-promotion-guide__cta-center {
    text-align: center;
}

.page-blog-hz88-chinh-thuc-promotion-guide__btn-large {
    padding: 18px 40px;
    font-size: 1.2em;
}

.page-blog-hz88-chinh-thuc-promotion-guide__terms-conditions .page-blog-hz88-chinh-thuc-promotion-guide__section-title {
    color: var(--gold-color);
}

.page-blog-hz88-chinh-thuc-promotion-guide__list {
    list-style-type: disc;
    color: var(--text-secondary);
    margin-left: 25px;
    margin-bottom: 20px;
}

.page-blog-hz88-chinh-thuc-promotion-guide__list-item {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-blog-hz88-chinh-thuc-promotion-guide__list-item strong {
    color: var(--text-main);
}

.page-blog-hz88-chinh-thuc-promotion-guide__faq-section .page-blog-hz88-chinh-thuc-promotion-guide__section-title {
    color: var(--gold-color);
}

.page-blog-hz88-chinh-thuc-promotion-guide__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-blog-hz88-chinh-thuc-promotion-guide__faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-sizing: border-box;
}

.page-blog-hz88-chinh-thuc-promotion-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--text-main);
    cursor: pointer;
    background-color: var(--deep-green);
    border-bottom: 1px solid var(--divider-color);
    transition: background-color 0.3s ease;
}

.page-blog-hz88-chinh-thuc-promotion-guide__faq-question:hover {
    background-color: var(--primary-color);
}

.page-blog-hz88-chinh-thuc-promotion-guide__faq-item[open] .page-blog-hz88-chinh-thuc-promotion-guide__faq-question {
    border-bottom-color: transparent;
}

.page-blog-hz88-chinh-thuc-promotion-guide__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: var(--gold-color);
}

.page-blog-hz88-chinh-thuc-promotion-guide__faq-answer {
    padding: 20px 25px;
    color: var(--text-secondary);
    font-size: 1.05em;
}

.page-blog-hz88-chinh-thuc-promotion-guide__faq-answer p {
    margin-bottom: 0;
}

.page-blog-hz88-chinh-thuc-promotion-guide__conclusion-section {
    background-color: var(--deep-green);
    padding: 80px 0;
    text-align: center;
}

.page-blog-hz88-chinh-thuc-promotion-guide__conclusion-section .page-blog-hz88-chinh-thuc-promotion-guide__section-title {
    color: var(--gold-color);
    margin-bottom: 30px;
}

.page-blog-hz88-chinh-thuc-promotion-guide__conclusion-section .page-blog-hz88-chinh-thuc-promotion-guide__description {
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--text-main);
    font-size: 1.2em;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .page-blog-hz88-chinh-thuc-promotion-guide {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-hz88-chinh-thuc-promotion-guide__hero-section {
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-hz88-chinh-thuc-promotion-guide__hero-image {
        max-height: 300px;
    }

    .page-blog-hz88-chinh-thuc-promotion-guide__hero-content {
        margin-top: 20px;
        padding: 0;
    }

    .page-blog-hz88-chinh-thuc-promotion-guide__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
        margin-bottom: 15px;
    }

    .page-blog-hz88-chinh-thuc-promotion-guide__description {
        font-size: 1em;
        margin-bottom: 25px;
    }

    .page-blog-hz88-chinh-thuc-promotion-guide__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-blog-hz88-chinh-thuc-promotion-guide__btn-primary,
    .page-blog-hz88-chinh-thuc-promotion-guide__btn-secondary,
    .page-blog-hz88-chinh-thuc-promotion-guide__card-btn,
    .page-blog-hz88-chinh-thuc-promotion-guide a[class*="button"],
    .page-blog-hz88-chinh-thuc-promotion-guide a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-hz88-chinh-thuc-promotion-guide__section {
        padding: 40px 0;
    }

    .page-blog-hz88-chinh-thuc-promotion-guide__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-blog-hz88-chinh-thuc-promotion-guide__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-blog-hz88-chinh-thuc-promotion-guide__card-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-blog-hz88-chinh-thuc-promotion-guide__card {
        padding: 20px;
    }

    .page-blog-hz88-chinh-thuc-promotion-guide__card-image {
        height: 180px;
        margin-bottom: 15px;
    }

    .page-blog-hz88-chinh-thuc-promotion-guide__card-title {
        font-size: 1.3em;
    }

    .page-blog-hz88-chinh-thuc-promotion-guide__text-block,
    .page-blog-hz88-chinh-thuc-promotion-guide__list-item {
        font-size: 1em;
    }

    .page-blog-hz88-chinh-thuc-promotion-guide__steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-blog-hz88-chinh-thuc-promotion-guide__step-item {
        padding: 25px;
    }

    .page-blog-hz88-chinh-thuc-promotion-guide__step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
        margin-bottom: 15px;
    }

    .page-blog-hz88-chinh-thuc-promotion-guide__step-title {
        font-size: 1.2em;
    }

    .page-blog-hz88-chinh-thuc-promotion-guide__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }

    .page-blog-hz88-chinh-thuc-promotion-guide__faq-toggle {
        font-size: 1.3em;
    }

    .page-blog-hz88-chinh-thuc-promotion-guide__faq-answer {
        padding: 15px 20px;
        font-size: 1em;
    }

    .page-blog-hz88-chinh-thuc-promotion-guide__conclusion-section {
        padding: 50px 15px;
    }

    .page-blog-hz88-chinh-thuc-promotion-guide__conclusion-section .page-blog-hz88-chinh-thuc-promotion-guide__description {
        font-size: 1em;
        margin-bottom: 30px;
    }

    .page-blog-hz88-chinh-thuc-promotion-guide img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
}

/* Ensure all image containers are responsive */
.page-blog-hz88-chinh-thuc-promotion-guide__hero-image-wrapper,
.page-blog-hz88-chinh-thuc-promotion-guide__card,
.page-blog-hz88-chinh-thuc-promotion-guide__steps-grid,
.page-blog-hz88-chinh-thuc-promotion-guide__faq-list {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* Specific mobile overrides for image/video containers */
@media (max-width: 768px) {
    .page-blog-hz88-chinh-thuc-promotion-guide__hero-image-wrapper,
    .page-blog-hz88-chinh-thuc-promotion-guide__card,
    .page-blog-hz88-chinh-thuc-promotion-guide__steps-grid,
    .page-blog-hz88-chinh-thuc-promotion-guide__faq-list,
    .page-blog-hz88-chinh-thuc-promotion-guide__cta-buttons,
    .page-blog-hz88-chinh-thuc-promotion-guide__cta-center {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-blog-hz88-chinh-thuc-promotion-guide__cta-buttons {
        flex-wrap: wrap !important;
        gap: 15px;
    }
    .page-blog-hz88-chinh-thuc-promotion-guide__hero-section {
        padding-top: 10px !important; 
    }
}