/* style/blog-latest-hello88-promotions.css */

:root {
    --color-primary: #11A84E;
    --color-secondary: #22C768;
    --color-button-gradient-start: #2AD16F;
    --color-button-gradient-end: #13994A;
    --color-card-bg: #11271B;
    --color-background: #08160F;
    --color-text-main: #F2FFF6;
    --color-text-secondary: #A7D9B8;
    --color-border: #2E7A4E;
    --color-glow: #57E38D;
    --color-gold: #F2C14E;
    --color-divider: #1E3A2A;
    --color-deep-green: #0A4B2C;
}

.page-blog-latest-hello88-promotions {
    background-color: var(--color-background);
    color: var(--color-text-main);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

/* Hero Section */
.page-blog-latest-hello88-promotions__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 60px;
    overflow: hidden;
}

.page-blog-latest-hello88-promotions__hero-image-wrapper {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    margin-bottom: 40px;
}

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

.page-blog-latest-hello88-promotions__hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.page-blog-latest-hello88-promotions__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: var(--color-gold);
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
    font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
}

.page-blog-latest-hello88-promotions__description {
    font-size: 1.1em;
    color: var(--color-text-main);
    margin-bottom: 30px;
}

.page-blog-latest-hello88-promotions__cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-blog-latest-hello88-promotions__btn-primary,
.page-blog-latest-hello88-promotions__btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text breaking */
    box-sizing: border-box;
    max-width: 100%;
}

.page-blog-latest-hello88-promotions__btn-primary {
    background: linear-gradient(180deg, var(--color-button-gradient-start) 0%, var(--color-button-gradient-end) 100%);
    color: #ffffff;
    border: 2px solid transparent;
}

.page-blog-latest-hello88-promotions__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-latest-hello88-promotions__btn-secondary {
    background-color: var(--color-card-bg);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.page-blog-latest-hello88-promotions__btn-secondary:hover {
    background-color: var(--color-primary);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Common Section Styles */
.page-blog-latest-hello88-promotions__introduction-section,
.page-blog-latest-hello88-promotions__promo-types-section,
.page-blog-latest-hello88-promotions__how-to-claim-section,
.page-blog-latest-hello88-promotions__why-hello88-section,
.page-blog-latest-hello88-promotions__terms-conditions-section,
.page-blog-latest-hello88-promotions__faq-section,
.page-blog-latest-hello88-promotions__cta-final-section {
    padding: 60px 0;
}

.page-blog-latest-hello88-promotions__section-title {
    font-size: 2.5em;
    color: var(--color-gold);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-blog-latest-hello88-promotions__text-block {
    font-size: 1.05em;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
    text-align: justify;
}

.page-blog-latest-hello88-promotions__text-block .keyword {
    color: var(--color-primary);
    font-weight: bold;
}

/* Promo Types Grid */
.page-blog-latest-hello88-promotions__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-blog-latest-hello88-promotions__promo-card {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-latest-hello88-promotions__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-latest-hello88-promotions__promo-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.page-blog-latest-hello88-promotions__promo-card-title {
    font-size: 1.4em;
    color: var(--color-text-main);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog-latest-hello88-promotions__promo-card-text {
    font-size: 0.95em;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
    text-align: justify;
}

.page-blog-latest-hello88-promotions__btn-text {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-blog-latest-hello88-promotions__btn-text:hover {
    color: var(--color-gold);
}

/* How to Claim Steps */
.page-blog-latest-hello88-promotions__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-blog-latest-hello88-promotions__step-card {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-latest-hello88-promotions__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 0 15px var(--color-glow);
}

.page-blog-latest-hello88-promotions__step-title {
    font-size: 1.3em;
    color: var(--color-text-main);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-blog-latest-hello88-promotions__step-text {
    font-size: 0.95em;
    color: var(--color-text-secondary);
}

.page-blog-latest-hello88-promotions__step-text a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: bold;
}

.page-blog-latest-hello88-promotions__step-text a:hover {
    color: var(--color-gold);
}

.page-blog-latest-hello88-promotions__cta-center {
    text-align: center;
    margin-top: 40px;
}

/* Why Hello88 Features */
.page-blog-latest-hello88-promotions__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-blog-latest-hello88-promotions__feature-item {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-latest-hello88-promotions__feature-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-blog-latest-hello88-promotions__feature-title {
    font-size: 1.4em;
    color: var(--color-text-main);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog-latest-hello88-promotions__feature-text {
    font-size: 0.95em;
    color: var(--color-text-secondary);
    text-align: justify;
}

/* Terms & Conditions */
.page-blog-latest-hello88-promotions__list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.page-blog-latest-hello88-promotions__list-item {
    background-color: var(--color-card-bg);
    border-left: 4px solid var(--color-primary);
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    color: var(--color-text-secondary);
    font-size: 1.0em;
}

/* FAQ Section */
.page-blog-latest-hello88-promotions__faq-list {
    margin-top: 30px;
}

.page-blog-latest-hello88-promotions__faq-item {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-blog-latest-hello88-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.15em;
    font-weight: bold;
    color: var(--color-text-main);
    cursor: pointer;
    background-color: var(--color-deep-green);
    border-bottom: 1px solid var(--color-divider);
}

.page-blog-latest-hello88-promotions__faq-question:hover {
    background-color: rgba(var(--color-deep-green), 0.8);
}

.page-blog-latest-hello88-promotions__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
    color: var(--color-gold);
}

.page-blog-latest-hello88-promotions__faq-item[open] .page-blog-latest-hello88-promotions__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-latest-hello88-promotions__faq-answer {
    padding: 15px 25px;
    font-size: 1.0em;
    color: var(--color-text-secondary);
    background-color: var(--color-card-bg);
    border-top: 1px solid var(--color-divider);
}

.page-blog-latest-hello88-promotions__faq-answer p {
    margin: 0;
}

.page-blog-latest-hello88-promotions__faq-item summary {
    list-style: none;
}

.page-blog-latest-hello88-promotions__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-blog-latest-hello88-promotions__cta-final-section {
    text-align: center;
    background-color: var(--color-deep-green);
    padding: 80px 0;
    border-top: 1px solid var(--color-divider);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-latest-hello88-promotions__main-title {
        font-size: clamp(2em, 5vw, 3em);
    }
    .page-blog-latest-hello88-promotions__section-title {
        font-size: 2em;
    }
}

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

    .page-blog-latest-hello88-promotions__hero-section,
    .page-blog-latest-hello88-promotions__introduction-section,
    .page-blog-latest-hello88-promotions__promo-types-section,
    .page-blog-latest-hello88-promotions__how-to-claim-section,
    .page-blog-latest-hello88-promotions__why-hello88-section,
    .page-blog-latest-hello88-promotions__terms-conditions-section,
    .page-blog-latest-hello88-promotions__faq-section,
    .page-blog-latest-hello88-promotions__cta-final-section {
        padding: 40px 0;
    }

    .page-blog-latest-hello88-promotions__container {
        padding: 0 15px;
    }

    .page-blog-latest-hello88-promotions__main-title {
        font-size: clamp(1.8em, 6vw, 2.5em) !important;
        margin-bottom: 15px;
    }

    .page-blog-latest-hello88-promotions__description {
        font-size: 1em;
        margin-bottom: 25px;
    }

    .page-blog-latest-hello88-promotions__cta-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px;
    }

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

    .page-blog-latest-hello88-promotions__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-blog-latest-hello88-promotions__promo-grid,
    .page-blog-latest-hello88-promotions__steps-grid,
    .page-blog-latest-hello88-promotions__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-blog-latest-hello88-promotions img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-blog-latest-hello88-promotions__promo-card-image {
        height: 180px;
    }

    .page-blog-latest-hello88-promotions__feature-icon {
        width: 60px;
        height: 60px;
    }

    .page-blog-latest-hello88-promotions__faq-question {
        padding: 15px 20px;
        font-size: 1em;
    }

    .page-blog-latest-hello88-promotions__faq-answer {
        padding: 10px 20px;
    }

    /* Ensure all content containers are constrained */
    .page-blog-latest-hello88-promotions__introduction-section .page-blog-latest-hello88-promotions__container,
    .page-blog-latest-hello88-promotions__promo-types-section .page-blog-latest-hello88-promotions__container,
    .page-blog-latest-hello88-promotions__how-to-claim-section .page-blog-latest-hello88-promotions__container,
    .page-blog-latest-hello88-promotions__why-hello88-section .page-blog-latest-hello88-promotions__container,
    .page-blog-latest-hello88-promotions__terms-conditions-section .page-blog-latest-hello88-promotions__container,
    .page-blog-latest-hello88-promotions__faq-section .page-blog-latest-hello88-promotions__container,
    .page-blog-latest-hello88-promotions__cta-final-section .page-blog-latest-hello88-promotions__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        overflow: hidden !important;
    }
    
    .page-blog-latest-hello88-promotions__hero-content {
        padding: 0 15px;
    }
}