/* style/promotions-vip-exclusive.css */
.page-promotions-vip-exclusive {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #0F1A2C; /* A slightly lighter dark blue for overall page background */
}

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

.page-promotions-vip-exclusive__hero {
    background: linear-gradient(135deg, #1A2B4C, #0F1A2C);
    padding: 100px 0;
    text-align: center;
    color: #FFD700; /* Gold for hero text */
    position: relative;
    overflow: hidden;
}

.page-promotions-vip-exclusive__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[GALLERY:bg:okvip,luxury_pattern,subtle_texture]');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.page-promotions-vip-exclusive__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    font-weight: bold;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-promotions-vip-exclusive__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #F0F0F0; /* Light white for subtitle */
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

.page-promotions-vip-exclusive__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.page-promotions-vip-exclusive__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-promotions-vip-exclusive__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #1A2B4C; /* Dark blue */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions-vip-exclusive__btn--primary:hover {
    background-color: #E6C200; /* Slightly darker gold */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-promotions-vip-exclusive__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold */
    border: 2px solid #FFD700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.page-promotions-vip-exclusive__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A2B4C;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.page-promotions-vip-exclusive__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-promotions-vip-exclusive__introduction, .page-promotions-vip-exclusive__benefits, .page-promotions-vip-exclusive__how-to-join, .page-promotions-vip-exclusive__faq, .page-promotions-vip-exclusive__cta-bottom {
    padding: 60px 0;
    background-color: #1A2B4C; /* Dark blue background for sections */
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-promotions-vip-exclusive__introduction {
    background-color: #1A2B4C;
    padding-top: 80px;
}

.page-promotions-vip-exclusive__text-content {
    font-size: 1.1em;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-promotions-vip-exclusive__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-vip-exclusive__image--full-width {
    width: 100%;
}

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

.page-promotions-vip-exclusive__benefit-card {
    background-color: #283C60; /* Slightly lighter dark blue for cards */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #3A5078;
}

.page-promotions-vip-exclusive__benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-promotions-vip-exclusive__benefit-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

.page-promotions-vip-exclusive__benefit-title {
    font-size: 1.6em;
    color: #FFD700; /* Gold */
    margin-bottom: 15px;
}

.page-promotions-vip-exclusive__benefit-description {
    font-size: 1em;
    line-height: 1.7;
    color: #B0B0B0; /* Lighter gray for description */
}

.page-promotions-vip-exclusive__how-to-join {
    text-align: center;
    background-color: #1A2B4C;
}

.page-promotions-vip-exclusive__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
    margin-top: 30px;
}

.page-promotions-vip-exclusive__faq {
    background-color: #0F1A2C;
}

.page-promotions-vip-exclusive__faq-item {
    background-color: #1A2B4C;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    border-left: 5px solid #FFD700;
}

.page-promotions-vip-exclusive__faq-question {
    font-size: 1.3em;
    color: #FFD700; /* Gold */
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-promotions-vip-exclusive__faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-promotions-vip-exclusive__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-promotions-vip-exclusive__faq-answer {
    font-size: 1em;
    color: #E0E0E0;
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
    opacity: 0;
}

.page-promotions-vip-exclusive__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    opacity: 1;
    padding-top: 15px;
}

.page-promotions-vip-exclusive__cta-bottom {
    text-align: center;
    background-color: #1A2B4C;
    padding-bottom: 80px;
}

.page-promotions-vip-exclusive__cta-bottom .page-promotions-vip-exclusive__btn {
    margin: 10px;
}

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

    .page-promotions-vip-exclusive__hero-subtitle {
        font-size: 1.1em;
    }

    .page-promotions-vip-exclusive__hero-actions {
        flex-direction: column;
    }

    .page-promotions-vip-exclusive__btn {
        width: 80%;
        margin: 10px auto;
    }

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

    .page-promotions-vip-exclusive__benefit-grid {
        grid-template-columns: 1fr;
    }

    .page-promotions-vip-exclusive__introduction, .page-promotions-vip-exclusive__benefits, .page-promotions-vip-exclusive__how-to-join, .page-promotions-vip-exclusive__faq, .page-promotions-vip-exclusive__cta-bottom {
        padding: 40px 0;
    }

    .page-promotions-vip-exclusive__faq-item {
        padding: 20px;
    }

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

@media (max-width: 480px) {
    .page-promotions-vip-exclusive__hero-title {
        font-size: 2em;
    }

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

    .page-promotions-vip-exclusive__btn {
        width: 90%;
    }

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

    .page-promotions-vip-exclusive__benefit-title {
        font-size: 1.4em;
    }

    .page-promotions-vip-exclusive__faq-question {
        font-size: 1em;
    }
}