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

.page-blog-latest-promotions-hello88__hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--primary-color, #2F6BFF);
    color: #FFFFFF;
}

.page-blog-latest-promotions-hello88__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

.page-blog-latest-promotions-hello88__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

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

.page-blog-latest-promotions-hello88__main-title {
    font-size: clamp(2em, 4vw, 3em);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.page-blog-latest-promotions-hello88__intro-text {
    font-size: clamp(1em, 1.5vw, 1.25em);
    margin-bottom: 30px;
    color: #FFFFFF;
}

.page-blog-latest-promotions-hello88__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease;
    color: #FFFFFF;
    background: var(--button-gradient, linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%));
    border: none;
    cursor: pointer;
    font-size: 1em;
    text-align: center;
}

.page-blog-latest-promotions-hello88__button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-blog-latest-promotions-hello88__button--small {
    padding: 8px 18px;
    font-size: 0.9em;
}

.page-blog-latest-promotions-hello88__button--large {
    padding: 15px 35px;
    font-size: 1.1em;
}

.page-blog-latest-promotions-hello88__section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-blog-latest-promotions-hello88__overview-section {
    background-color: var(--card-bg-color, #FFFFFF);
    border-radius: 12px;
    margin-top: -40px; /* Overlap with hero for visual flow */
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.page-blog-latest-promotions-hello88__section-heading {
    font-size: clamp(1.8em, 3vw, 2.5em);
    color: var(--text-main-color, #1F2D3D);
    margin-bottom: 20px;
    font-weight: 700;
}

.page-blog-latest-promotions-hello88__section-description {
    font-size: 1.1em;
    color: var(--custom-color-1776249996415, #000000);
    max-width: 800px;
    margin: 0 auto 30px auto;
}

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

.page-blog-latest-promotions-hello88__promotion-card {
    background-color: var(--card-bg-color, #FFFFFF);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 25px;
    border: 1px solid var(--border-color, #D6E2FF);
}

.page-blog-latest-promotions-hello88__card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
}

.page-blog-latest-promotions-hello88__card-title {
    font-size: 1.4em;
    color: var(--text-main-color, #1F2D3D);
    margin-bottom: 10px;
    padding: 0 15px;
    font-weight: 600;
}

.page-blog-latest-promotions-hello88__card-description {
    font-size: 1em;
    color: var(--custom-color-1776249996415, #000000);
    padding: 0 15px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-blog-latest-promotions-hello88__how-to-claim .page-blog-latest-promotions-hello88__section-description {
    margin-bottom: 40px;
}

.page-blog-latest-promotions-hello88__guide-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}

.page-blog-latest-promotions-hello88__guide-steps {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.page-blog-latest-promotions-hello88__step-item {
    background-color: var(--card-bg-color, #FFFFFF);
    border: 1px solid var(--border-color, #D6E2FF);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 1.1em;
    color: var(--text-main-color, #1F2D3D);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    position: relative;
    counter-increment: step-counter;
    text-align: left;
    padding-left: 50px;
}

.page-blog-latest-promotions-hello88__step-item::before {
    content: counter(step-counter);
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color, #2F6BFF);
    color: #FFFFFF;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9em;
}

.page-blog-latest-promotions-hello88__guide-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-blog-latest-promotions-hello88__terms-conditions {
    background-color: var(--card-bg-color, #FFFFFF);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding-bottom: 40px;
}

.page-blog-latest-promotions-hello88__terms-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 30px auto;
    text-align: left;
}

.page-blog-latest-promotions-hello88__terms-item {
    font-size: 1.05em;
    color: var(--custom-color-1776249996415, #000000);
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.page-blog-latest-promotions-hello88__terms-item::before {
    content: '•';
    color: var(--primary-color, #2F6BFF);
    position: absolute;
    left: 0;
    font-size: 1.2em;
    line-height: 1;
}

.page-blog-latest-promotions-hello88__final-cta {
    padding-bottom: 80px;
}

/* Responsive adjustments */
@media (min-width: 769px) {
    .page-blog-latest-promotions-hello88__guide-content {
        flex-direction: row;
        justify-content: center;
    }

    .page-blog-latest-promotions-hello88__guide-steps {
        flex: 1;
        margin-right: 40px;
    }

    .page-blog-latest-promotions-hello88__guide-image {
        flex: 1;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .page-blog-latest-promotions-hello88__section {
        padding: 40px 15px;
    }

    .page-blog-latest-promotions-hello88__hero-section {
        padding-bottom: 20px;
    }

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

    .page-blog-latest-promotions-hello88__intro-text {
        font-size: 1em;
    }

    .page-blog-latest-promotions-hello88__section-heading {
        font-size: 1.8em;
    }

    .page-blog-latest-promotions-hello88__promotion-grid {
        grid-template-columns: 1fr;
    }

    .page-blog-latest-promotions-hello88__card-image,
    .page-blog-latest-promotions-hello88__guide-image {
        max-width: 100%;
        height: auto;
    }

    .page-blog-latest-promotions-hello88__guide-content {
        flex-direction: column;
    }

    .page-blog-latest-promotions-hello88__guide-steps {
        margin-right: 0;
    }

    /* Enforce max-width for images in content area */
    .page-blog-latest-promotions-hello88 img {
        max-width: 100%;
        height: auto;
    }
}

/* Global image size constraint for content area */
.page-blog-latest-promotions-hello88 img {
    min-width: 200px;
    min-height: 200px;
}

@media (max-width: 768px) {
    .page-blog-latest-promotions-hello88 img {
        max-width: 100% !important;
        height: auto !important;
    }
}