.page-promotions-vip-program {
    font-family: Arial, sans-serif;
    color: #FFF6D6;
    background-color: #0A0A0A;
    line-height: 1.6;
    padding-top: 10px; /* Small top padding to respect body padding-top from shared.css */
}

.page-promotions-vip-program__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px 60px;
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.page-promotions-vip-program__hero-image-wrapper {
    width: 100%;
    margin-bottom: 30px;
}

.page-promotions-vip-program__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
}

.page-promotions-vip-program__hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.page-promotions-vip-program__main-title {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(90deg, #F2C14E, #FFD36B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; /* Fallback for non-webkit browsers */
}

.page-promotions-vip-program__hero-description {
    font-size: 1.15rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #FFF6D6;
}

.page-promotions-vip-program__cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-promotions-vip-program__cta-button {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    min-width: 180px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-vip-program__cta-button--primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
    border: none;
}

.page-promotions-vip-program__cta-button--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-vip-program__cta-button--secondary {
    background-color: transparent;
    color: #FFD36B;
    border: 2px solid #FFD36B;
}

.page-promotions-vip-program__cta-button--secondary:hover {
    background-color: rgba(255, 211, 107, 0.1);
    transform: translateY(-2px);
}

.page-promotions-vip-program__benefits-section,
.page-promotions-vip-program__tiers-section,
.page-promotions-vip-program__how-to-join-section,
.page-promotions-vip-program__faq-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px 20px;
    background-color: #111111;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-vip-program__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
    background: linear-gradient(90deg, #F2C14E, #FFD36B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; /* Fallback */
}

.page-promotions-vip-program__section-description {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #FFF6D6;
}

.page-promotions-vip-program__benefits-grid,
.page-promotions-vip-program__tiers-grid,
.page-promotions-vip-program__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-promotions-vip-program__benefit-card,
.page-promotions-vip-program__tier-card,
.page-promotions-vip-program__step-card {
    background-color: #111111;
    border: 1px solid #3A2A12;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-vip-program__benefit-card:hover,
.page-promotions-vip-program__tier-card:hover,
.page-promotions-vip-program__step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions-vip-program__benefit-icon {
    width: 100%; /* Ensure image fills card width */
    max-width: 400px; /* Example max-width, keeping aspect ratio */
    height: auto;
    margin: 0 auto 20px;
    border-radius: 8px;
    display: block; /* Ensure it's a block element */
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px; /* Minimum size requirement */
    object-fit: cover;
}

.page-promotions-vip-program__benefit-title,
.page-promotions-vip-program__tier-name,
.page-promotions-vip-program__step-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #FFD36B;
}

.page-promotions-vip-program__benefit-text,
.page-promotions-vip-program__tier-description,
.page-promotions-vip-program__step-text {
    font-size: 1rem;
    color: #FFF6D6;
}

.page-promotions-vip-program__tier-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.page-promotions-vip-program__tier-features li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #FFF6D6;
}

.page-promotions-vip-program__tier-features li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #FFD36B;
}

.page-promotions-vip-program__tier-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 25px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.page-promotions-vip-program__tier-button:hover {
    background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
}

.page-promotions-vip-program__step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background-color: #F2C14E;
    color: #111111;
    font-size: 2rem;
    font-weight: 700;
}

.page-promotions-vip-program__bottom-cta {
    text-align: center;
    margin-top: 50px;
}

.page-promotions-vip-program__faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-promotions-vip-program__faq-item {
    background-color: #0A0A0A;
    border: 1px solid #3A2A12;
    border-radius: 8px;
    padding: 25px;
    transition: background-color 0.3s ease;
}

.page-promotions-vip-program__faq-item:hover {
    background-color: #181818;
}

.page-promotions-vip-program__faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #FFD36B;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-promotions-vip-program__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.page-promotions-vip-program__faq-question.is-active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-promotions-vip-program__faq-answer {
    font-size: 1rem;
    color: #FFF6D6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.page-promotions-vip-program__faq-answer.is-open {
    max-height: 200px; /* Adjust as needed */
    margin-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-promotions-vip-program__hero-section {
        padding: 20px 15px 40px;
    }

    .page-promotions-vip-program__main-title {
        font-size: clamp(2rem, 6vw, 2.8rem);
    }

    .page-promotions-vip-program__hero-description {
        font-size: 1rem;
    }

    .page-promotions-vip-program__cta-group {
        flex-direction: column;
        gap: 15px;
    }

    .page-promotions-vip-program__cta-button {
        width: 100%;
        max-width: 280px; /* Constrain width for better mobile display */
        margin: 0 auto;
    }

    .page-promotions-vip-program__section-title {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
    }

    .page-promotions-vip-program__section-description {
        font-size: 0.95rem;
    }

    .page-promotions-vip-program__benefits-grid,
    .page-promotions-vip-program__tiers-grid,
    .page-promotions-vip-program__steps-grid {
        grid-template-columns: 1fr;
    }

    .page-promotions-vip-program__benefit-card,
    .page-promotions-vip-program__tier-card,
    .page-promotions-vip-program__step-card {
        padding: 25px;
    }

    .page-promotions-vip-program__benefit-icon {
        min-width: 200px;
        min-height: 200px;
        max-width: 100%; /* Ensure images don't overflow */
        height: auto;
    }
    
    /* Ensure all content area images are responsive and don't overflow */
    .page-promotions-vip-program img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 549px) {
    .page-promotions-vip-program__hero-section {
        padding: 15px 10px 30px;
    }

    .page-promotions-vip-program__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .page-promotions-vip-program__hero-description {
        font-size: 0.9rem;
    }

    .page-promotions-vip-program__section-title {
        font-size: clamp(1.4rem, 6vw, 2rem);
    }

    .page-promotions-vip-program__section-description {
        font-size: 0.9rem;
    }

    .page-promotions-vip-program__benefits-section,
    .page-promotions-vip-program__tiers-section,
    .page-promotions-vip-program__how-to-join-section,
    .page-promotions-vip-program__faq-section {
        margin: 40px auto;
        padding: 30px 15px;
    }

    .page-promotions-vip-program__faq-question {
        font-size: 1.1rem;
    }

    .page-promotions-vip-program__faq-answer {
        font-size: 0.95rem;
    }
}