/* style/blog-hihi88-latest-promotions-review.css */
/* body 已 padding-top: var(--header-offset)；页面禁止再写该变量 */

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

.page-blog-hihi88-latest-promotions-review {
    background-color: var(--hihi88-background); /* Dark background */
    color: var(--hihi88-text-main); /* Light text for contrast */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-blog-hihi88-latest-promotions-review__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image on top, content below */
    align-items: center;
    padding: 10px 0 40px; /* Small top padding, larger bottom padding */
    overflow: hidden; /* Ensure no overflow */
}

.page-blog-hihi88-latest-promotions-review__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    max-height: 500px; /* Limit hero image height for better content visibility */
}

.page-blog-hihi88-latest-promotions-review__hero-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 30px 20px;
    text-align: center;
    box-sizing: border-box;
    background-color: var(--hihi88-background); /* Provide a solid background for text */
    color: var(--hihi88-text-main);
    z-index: 1;
}

.page-blog-hihi88-latest-promotions-review__main-title {
    font-size: clamp(2.2em, 4vw, 3.5em); /* Use clamp for H1 */
    color: var(--hihi88-gold);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-blog-hihi88-latest-promotions-review__description {
    font-size: 1.1em;
    color: var(--hihi88-text-secondary);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-hihi88-latest-promotions-review__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-blog-hihi88-latest-promotions-review__btn-primary,
.page-blog-hihi88-latest-promotions-review__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-sizing: border-box; /* Crucial for mobile responsiveness */
    max-width: 100%; /* Crucial for mobile responsiveness */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    text-align: center;
}

.page-blog-hihi88-latest-promotions-review__btn-primary {
    background: var(--hihi88-button-gradient);
    color: var(--hihi88-text-main); /* Light text on dark/gradient button */
    border: 2px solid transparent;
}

.page-blog-hihi88-latest-promotions-review__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.3);
}

.page-blog-hihi88-latest-promotions-review__btn-secondary {
    background-color: transparent;
    color: var(--hihi88-primary-color);
    border: 2px solid var(--hihi88-primary-color);
}

.page-blog-hihi88-latest-promotions-review__btn-secondary:hover {
    background-color: var(--hihi88-primary-color);
    color: var(--hihi88-text-main);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.2);
}

.page-blog-hihi88-latest-promotions-review__content-area {
    max-width: 1200px;
    width: 100%; /* Ensure content area takes full width up to max-width */
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
    background-color: var(--hihi88-background); /* Explicitly set background for contrast system */
    color: var(--hihi88-text-main);
}

.page-blog-hihi88-latest-promotions-review__section-title {
    font-size: 2.5em;
    color: var(--hihi88-gold);
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
}

.page-blog-hihi88-latest-promotions-review__sub-title {
    font-size: 1.8em;
    color: var(--hihi88-primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-blog-hihi88-latest-promotions-review__text-block {
    font-size: 1em;
    color: var(--hihi88-text-secondary);
    margin-bottom: 20px;
}

.page-blog-hihi88-latest-promotions-review__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px; /* Minimum size requirement */
    object-fit: cover;
}

.page-blog-hihi88-latest-promotions-review__list {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--hihi88-text-secondary);
}

.page-blog-hihi88-latest-promotions-review__list li {
    margin-bottom: 10px;
    color: var(--hihi88-text-secondary);
}

.page-blog-hihi88-latest-promotions-review__sub-list {
    list-style: circle;
    margin-left: 20px;
    margin-top: 5px;
    color: var(--hihi88-text-secondary);
}

/* FAQ Section */
.page-blog-hihi88-latest-promotions-review__faq-list {
    margin-top: 40px;
    border-top: 1px solid var(--hihi88-divider);
}

.page-blog-hihi88-latest-promotions-review__faq-item {
    border-bottom: 1px solid var(--hihi88-divider);
    padding: 15px 0;
}

.page-blog-hihi88-latest-promotions-review__faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1em;
    color: var(--hihi88-text-main);
    padding: 10px 0;
    list-style: none; /* Remove default marker */
}

.page-blog-hihi88-latest-promotions-review__faq-item summary::-webkit-details-marker {
    display: none; /* Remove default marker for Webkit browsers */
}

.page-blog-hihi88-latest-promotions-review__faq-qtext {
    flex-grow: 1;
    color: var(--hihi88-text-main);
}

.page-blog-hihi88-latest-promotions-review__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 10px;
    color: var(--hihi88-gold);
}

.page-blog-hihi88-latest-promotions-review__faq-answer {
    padding: 10px 0 0 0;
    font-size: 0.95em;
    color: var(--hihi88-text-secondary);
}

.page-blog-hihi88-latest-promotions-review__faq-answer p {
    margin-bottom: 0; /* Remove default paragraph margin inside answer */
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .page-blog-hihi88-latest-promotions-review {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-hihi88-latest-promotions-review__hero-section {
        padding: 10px 0 20px;
    }

    .page-blog-hihi88-latest-promotions-review__hero-image {
        max-height: 300px;
    }

    .page-blog-hihi88-latest-promotions-review__hero-content {
        padding: 20px 15px;
    }

    .page-blog-hihi88-latest-promotions-review__main-title {
        font-size: 2em;
    }

    .page-blog-hihi88-latest-promotions-review__description {
        font-size: 1em;
    }

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

    .page-blog-hihi88-latest-promotions-review__btn-primary,
    .page-blog-hihi88-latest-promotions-review__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-blog-hihi88-latest-promotions-review__content-area,
    .page-blog-hihi88-latest-promotions-review__section,
    .page-blog-hihi88-latest-promotions-review__card,
    .page-blog-hihi88-latest-promotions-review__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-hihi88-latest-promotions-review__image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-width: 200px !important;
        min-height: 200px !important;
        box-sizing: border-box !important;
    }
    
    .page-blog-hihi88-latest-promotions-review__section-title {
        font-size: 1.8em;
    }

    .page-blog-hihi88-latest-promotions-review__sub-title {
        font-size: 1.4em;
    }

    .page-blog-hihi88-latest-promotions-review__faq-item summary {
        font-size: 1em;
    }
}