/* style/promotions-hello88-exclusive.css */
.page-promotions-hello88-exclusive {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

.page-promotions-hello88-exclusive__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-promotions-hello88-exclusive__section {
    padding: 60px 0;
    text-align: center;
}

.page-promotions-hello88-exclusive__section-title {
    font-size: 2.5em;
    color: #1A237E;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.page-promotions-hello88-exclusive__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFC107;
    border-radius: 2px;
}

.page-promotions-hello88-exclusive__section-description {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-hello88-exclusive__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-promotions-hello88-exclusive__btn--primary {
    background-color: #FFC107;
    color: #1A237E;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.page-promotions-hello88-exclusive__btn--primary:hover {
    background-color: #e6b000;
    transform: translateY(-2px);
}

.page-promotions-hello88-exclusive__btn--secondary {
    background-color: #1A237E;
    color: #FFC107;
    border: 2px solid #FFC107;
}

.page-promotions-hello88-exclusive__btn--secondary:hover {
    background-color: #0d123e;
    transform: translateY(-2px);
}

.page-promotions-hello88-exclusive__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

/* Hero Section */
.page-promotions-hello88-exclusive__hero {
    background: linear-gradient(135deg, #1A237E 0%, #3f478f 100%); /* Adjusted gradient for better contrast */
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-hello88-exclusive__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFC107; /* Highlight with secondary color */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-promotions-hello88-exclusive__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-promotions-hello88-exclusive__hero-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    margin-top: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Why Hello88 Section */
.page-promotions-hello88-exclusive__section--why-hello88 {
    background-color: #fff;
}

.page-promotions-hello88-exclusive__features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-hello88-exclusive__feature-item {
    flex: 1 1 300px;
    background-color: #f0f2f5;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-hello88-exclusive__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.page-promotions-hello88-exclusive__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    color: #1A237E;
}

.page-promotions-hello88-exclusive__feature-title {
    font-size: 1.5em;
    color: #1A237E;
    margin-bottom: 15px;
}

.page-promotions-hello88-exclusive__feature-description {
    color: #666;
    font-size: 1em;
}

/* Offer Types Section */
.page-promotions-hello88-exclusive__section--offer-types {
    background-color: #e3e6ed;
}

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

.page-promotions-hello88-exclusive__offer-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 30px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-promotions-hello88-exclusive__offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.page-promotions-hello88-exclusive__offer-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-promotions-hello88-exclusive__offer-title {
    font-size: 1.6em;
    color: #1A237E;
    margin-bottom: 10px;
}

.page-promotions-hello88-exclusive__offer-text {
    color: #555;
    font-size: 0.95em;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* How to Claim Section */
.page-promotions-hello88-exclusive__section--how-to-claim {
    background-color: #fff;
}

.page-promotions-hello88-exclusive__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-hello88-exclusive__step-item {
    background-color: #f0f2f5;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    text-align: center;
}

.page-promotions-hello88-exclusive__step-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    color: #FFC107;
}

.page-promotions-hello88-exclusive__step-title {
    font-size: 1.4em;
    color: #1A237E;
    margin-bottom: 10px;
}

.page-promotions-hello88-exclusive__step-text {
    color: #666;
}

/* Responsible Gambling Section */
.page-promotions-hello88-exclusive__section--responsible-gambling {
    background-color: #1A237E;
    color: #e0e0e0;
}

.page-promotions-hello88-exclusive__section--responsible-gambling .page-promotions-hello88-exclusive__section-title {
    color: #FFC107;
}

.page-promotions-hello88-exclusive__section--responsible-gambling .page-promotions-hello88-exclusive__section-description {
    color: #c0c0c0;
}

.page-promotions-hello88-exclusive__responsible-list {
    list-style: none;
    padding: 0;
    margin: 40px auto 0 auto;
    max-width: 700px;
    text-align: left;
}

.page-promotions-hello88-exclusive__responsible-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #fff;
}

.page-promotions-hello88-exclusive__list-icon {
    width: 30px;
    height: 30px;
    margin-right: 15px;
    color: #FFC107;
}

/* FAQ Section */
.page-promotions-hello88-exclusive__section--faq {
    background-color: #f8f8f8;
}

.page-promotions-hello88-exclusive__faq-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    transition: box-shadow 0.3s ease;
}

.page-promotions-hello88-exclusive__faq-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.page-promotions-hello88-exclusive__faq-question {
    font-size: 1.3em;
    color: #1A237E;
    margin-bottom: 10px;
}

.page-promotions-hello88-exclusive__faq-answer {
    color: #555;
    font-size: 1em;
}

/* Final CTA */
.page-promotions-hello88-exclusive__cta-final {
    background: linear-gradient(45deg, #1A237E, #3f478f);
    padding: 80px 0;
    color: #fff;
    text-align: center;
}

.page-promotions-hello88-exclusive__cta-title {
    font-size: 3em;
    color: #FFC107;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-promotions-hello88-exclusive__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-promotions-hello88-exclusive__hero-title {
        font-size: 2.5em;
    }

    .page-promotions-hello88-exclusive__hero-subtitle {
        font-size: 1em;
    }

    .page-promotions-hello88-exclusive__section-title {
        font-size: 2em;
    }

    .page-promotions-hello88-exclusive__features,
    .page-promotions-hello88-exclusive__offer-grid,
    .page-promotions-hello88-exclusive__steps {
        grid-template-columns: 1fr;
    }

    .page-promotions-hello88-exclusive__feature-item,
    .page-promotions-hello88-exclusive__offer-card,
    .page-promotions-hello88-exclusive__step-item {
        flex-basis: auto;
    }

    .page-promotions-hello88-exclusive__cta-title {
        font-size: 2.2em;
    }

    .page-promotions-hello88-exclusive__cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-promotions-hello88-exclusive__hero,
    .page-promotions-hello88-exclusive__section,
    .page-promotions-hello88-exclusive__cta-final {
        padding: 40px 0;
    }

    .page-promotions-hello88-exclusive__btn {
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-promotions-hello88-exclusive__btn--large {
        padding: 15px 25px;
        font-size: 1.1em;
    }

    .page-promotions-hello88-exclusive__hero-title {
        font-size: 2em;
    }

    .page-promotions-hello88-exclusive__section-title {
        font-size: 1.8em;
    }

    .page-promotions-hello88-exclusive__offer-title {
        font-size: 1.4em;
    }

    .page-promotions-hello88-exclusive__faq-question {
        font-size: 1.1em;
    }
}