:root {
    --primary-color: #2F6BFF;
    --secondary-color: #6FA3FF;
    --button-gradient: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    --card-bg: #FFFFFF;
    --page-bg: #F4F7FB;
    --text-main: #1F2D3D;
    --text-black: #000000; /* Custom Color_1776249996415 */
    --border-color: #D6E2FF;
    --glow-color: #A5C4FF;
}

.page-blog-hello88-latest-promotions {
    background-color: var(--page-bg);
    color: var(--text-main);
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: 10px; /* Small top padding for non-header offset */
}

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

.page-blog-hello88-latest-promotions__hero-section {
    position: relative;
    background-color: var(--primary-color);
    color: var(--card-bg);
    padding-bottom: 40px;
    display: flex;
    flex-direction: column; /* Ensure image is above content */
    align-items: center;
    text-align: center;
}

.page-blog-hello88-latest-promotions__hero-image {
    width: 100%;
    max-width: 1920px;
    height: auto;
    display: block;
    margin-bottom: 20px;
}

.page-blog-hello88-latest-promotions__hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.page-blog-hello88-latest-promotions__hero-content h1 {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
    color: var(--card-bg);
    max-width: 100%; /* Ensure H1 doesn't overflow */
}

.page-blog-hello88-latest-promotions__hero-content p {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: var(--card-bg);
}

.page-blog-hello88-latest-promotions__cta-button {
    display: inline-block;
    background: var(--button-gradient);
    color: var(--card-bg);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 200px; /* Ensure button is not too small */
    text-align: center;
}

.page-blog-hello88-latest-promotions__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-hello88-latest-promotions__overview-section,
.page-blog-hello88-latest-promotions__promo-categories,
.page-blog-hello88-latest-promotions__claim-guide,
.page-blog-hello88-latest-promotions__faq-section {
    padding: 60px 0;
    background-color: var(--page-bg);
}

.page-blog-hello88-latest-promotions__overview-section h2,
.page-blog-hello88-latest-promotions__promo-categories h2,
.page-blog-hello88-latest-promotions__claim-guide h2,
.page-blog-hello88-latest-promotions__faq-section h2 {
    text-align: center;
    color: var(--text-black);
    margin-bottom: 40px;
    font-size: 2.5em;
}

.page-blog-hello88-latest-promotions__overview-section p {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-main);
}

.page-blog-hello88-latest-promotions__overview-image {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    min-height: 200px;
}

.page-blog-hello88-latest-promotions__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

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

.page-blog-hello88-latest-promotions__promo-card:hover {
    transform: translateY(-5px);
}

.page-blog-hello88-latest-promotions__promo-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
}

.page-blog-hello88-latest-promotions__promo-card h3 {
    color: var(--text-black);
    margin-bottom: 10px;
    font-size: 1.5em;
}

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

.page-blog-hello88-latest-promotions__card-button {
    display: inline-block;
    background: var(--primary-color);
    color: var(--card-bg);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    min-width: 120px;
    text-align: center;
}

.page-blog-hello88-latest-promotions__card-button:hover {
    background-color: var(--secondary-color);
}

.page-blog-hello88-latest-promotions__view-all-wrapper {
    text-align: center;
    margin-top: 20px;
}

.page-blog-hello88-latest-promotions__view-all-button {
    display: inline-block;
    background: var(--button-gradient);
    color: var(--card-bg);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 200px;
    text-align: center;
}

.page-blog-hello88-latest-promotions__view-all-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-hello88-latest-promotions__claim-guide ol {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-blog-hello88-latest-promotions__claim-guide ol li {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: var(--text-main);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-blog-hello88-latest-promotions__claim-guide ol li strong {
    color: var(--text-black);
}

.page-blog-hello88-latest-promotions__claim-guide .page-blog-hello88-latest-promotions__cta-button {
    margin-top: 20px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-hello88-latest-promotions__faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.page-blog-hello88-latest-promotions__faq-question {
    padding: 20px;
    margin: 0;
    font-size: 1.2em;
    color: var(--text-black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--card-bg);
    border-bottom: 1px solid transparent;
    transition: background-color 0.3s ease, border-bottom-color 0.3s ease;
}

.page-blog-hello88-latest-promotions__faq-question::after {
    content: '+';
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-blog-hello88-latest-promotions__faq-question.active {
    background-color: var(--page-bg);
    border-bottom-color: var(--border-color);
}

.page-blog-hello88-latest-promotions__faq-question.active::after {
    transform: rotate(45deg);
}

.page-blog-hello88-latest-promotions__faq-answer {
    padding: 0 20px 20px;
    margin: 0;
    font-size: 1em;
    color: var(--text-main);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-blog-hello88-latest-promotions__container {
        padding: 15px;
    }

    .page-blog-hello88-latest-promotions__hero-content h1 {
        font-size: 2em; /* Smaller H1 for mobile */
    }

    .page-blog-hello88-latest-promotions__hero-content p {
        font-size: 1em;
    }

    .page-blog-hello88-latest-promotions__cta-button,
    .page-blog-hello88-latest-promotions__view-all-button {
        padding: 12px 25px;
        font-size: 0.9em;
        min-width: unset;
        width: 100%;
        max-width: 280px;
    }

    .page-blog-hello88-latest-promotions__overview-section h2,
    .page-blog-hello88-latest-promotions__promo-categories h2,
    .page-blog-hello88-latest-promotions__claim-guide h2,
    .page-blog-hello88-latest-promotions__faq-section h2 {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .page-blog-hello88-latest-promotions__promo-grid {
        grid-template-columns: 1fr;
    }

    .page-blog-hello88-latest-promotions__promo-card img,
    .page-blog-hello88-latest-promotions__overview-image {
        max-width: 100%;
        height: auto;
    }

    .page-blog-hello88-latest-promotions__promo-card h3 {
        font-size: 1.3em;
    }

    .page-blog-hello88-latest-promotions__faq-question {
        font-size: 1.1em;
    }

    /* Ensure all content images in mobile are responsive and don't overflow */
    .page-blog-hello88-latest-promotions img {
        max-width: 100%;
        height: auto;
    }
}