/* style/vip-loyalty-programs-vip-exclusive-events.css */

:root {
    --page-vip-loyalty-programs-vip-exclusive-events-primary-color: #1A2E44;
    --page-vip-loyalty-programs-vip-exclusive-events-secondary-color: #FFD700;
    --page-vip-loyalty-programs-vip-exclusive-events-text-light: #F8F8F8;
    --page-vip-loyalty-programs-vip-exclusive-events-text-dark: #333333;
    --page-vip-loyalty-programs-vip-exclusive-events-bg-light: #FFFFFF;
    --page-vip-loyalty-programs-vip-exclusive-events-bg-dark: #0F1D2C;
}

.page-vip-loyalty-programs-vip-exclusive-events {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-vip-loyalty-programs-vip-exclusive-events-text-dark);
    background-color: var(--page-vip-loyalty-programs-vip-exclusive-events-bg-light);
}

.page-vip-loyalty-programs-vip-exclusive-events__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-vip-loyalty-programs-vip-exclusive-events__hero-section {
    background: linear-gradient(135deg, var(--page-vip-loyalty-programs-vip-exclusive-events-primary-color) 0%, #3a5c81 100%);
    color: var(--page-vip-loyalty-programs-vip-exclusive-events-text-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-vip-loyalty-programs-vip-exclusive-events__hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, rgba(26, 46, 68, 0) 70%);
    animation: page-vip-loyalty-programs-vip-exclusive-events-glow 15s infinite alternate;
    z-index: 0;
}

@keyframes page-vip-loyalty-programs-vip-exclusive-events-glow {
    0% { transform: scale(1) rotate(0deg); opacity: 0.8; }
    50% { transform: scale(1.2) rotate(10deg); opacity: 1; }
    100% { transform: scale(1) rotate(0deg); opacity: 0.8; }
}

.page-vip-loyalty-programs-vip-exclusive-events__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--page-vip-loyalty-programs-vip-exclusive-events-secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.page-vip-loyalty-programs-vip-exclusive-events__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    position: relative;
    z-index: 1;
    color: #E0E0E0; /* Slightly lighter for better contrast on dark background */
}

.page-vip-loyalty-programs-vip-exclusive-events__cta-button {
    display: inline-block;
    background-color: var(--page-vip-loyalty-programs-vip-exclusive-events-secondary-color);
    color: var(--page-vip-loyalty-programs-vip-exclusive-events-primary-color);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.page-vip-loyalty-programs-vip-exclusive-events__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-vip-loyalty-programs-vip-exclusive-events__section-title {
    font-size: 2.5em;
    color: var(--page-vip-loyalty-programs-vip-exclusive-events-primary-color);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.page-vip-loyalty-programs-vip-exclusive-events__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--page-vip-loyalty-programs-vip-exclusive-events-secondary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-vip-loyalty-programs-vip-exclusive-events__introduction-section,
.page-vip-loyalty-programs-vip-exclusive-events__rewards-section,
.page-vip-loyalty-programs-vip-exclusive-events__how-to-join-section,
.page-vip-loyalty-programs-vip-exclusive-events__faq-section,
.page-vip-loyalty-programs-vip-exclusive-events__cta-final-section {
    padding: 80px 0;
}

.page-vip-loyalty-programs-vip-exclusive-events__content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-vip-loyalty-programs-vip-exclusive-events__content-wrapper--reversed {
    flex-direction: row-reverse;
}

.page-vip-loyalty-programs-vip-exclusive-events__text-content {
    flex: 1;
    padding-right: 20px;
}

.page-vip-loyalty-programs-vip-exclusive-events__text-content h3 {
    font-size: 1.8em;
    color: var(--page-vip-loyalty-programs-vip-exclusive-events-primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-vip-loyalty-programs-vip-exclusive-events__text-content p {
    margin-bottom: 15px;
    color: var(--page-vip-loyalty-programs-vip-exclusive-events-text-dark);
}

.page-vip-loyalty-programs-vip-exclusive-events__image-wrapper {
    flex: 1;
    text-align: center;
}

.page-vip-loyalty-programs-vip-exclusive-events__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-vip-loyalty-programs-vip-exclusive-events__benefits-list,
.page-vip-loyalty-programs-vip-exclusive-events__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-vip-loyalty-programs-vip-exclusive-events__benefits-list li,
.page-vip-loyalty-programs-vip-exclusive-events__steps-list li {
    background-color: #F0F4F8;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    color: var(--page-vip-loyalty-programs-vip-exclusive-events-text-dark);
}

.page-vip-loyalty-programs-vip-exclusive-events__benefits-list li::before {
    content: '✓';
    color: var(--page-vip-loyalty-programs-vip-exclusive-events-secondary-color);
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2em;
}

.page-vip-loyalty-programs-vip-exclusive-events__steps-list li {
    counter-increment: step-counter;
}

.page-vip-loyalty-programs-vip-exclusive-events__steps-list li::before {
    content: counter(step-counter);
    background-color: var(--page-vip-loyalty-programs-vip-exclusive-events-primary-color);
    color: var(--page-vip-loyalty-programs-vip-exclusive-events-text-light);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.page-vip-loyalty-programs-vip-exclusive-events__rewards-section {
    background-color: var(--page-vip-loyalty-programs-vip-exclusive-events-bg-dark);
    color: var(--page-vip-loyalty-programs-vip-exclusive-events-text-light);
}

.page-vip-loyalty-programs-vip-exclusive-events__rewards-section .page-vip-loyalty-programs-vip-exclusive-events__section-title {
    color: var(--page-vip-loyalty-programs-vip-exclusive-events-text-light);
}

.page-vip-loyalty-programs-vip-exclusive-events__rewards-section p {
    color: #CCCCCC; /* Lighter text for dark background */
}

.page-vip-loyalty-programs-vip-exclusive-events__reward-item {
    background-color: #2A3F5B;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-vip-loyalty-programs-vip-exclusive-events__reward-item:hover {
    transform: translateY(-5px);
}

.page-vip-loyalty-programs-vip-exclusive-events__reward-item h3 {
    color: var(--page-vip-loyalty-programs-vip-exclusive-events-secondary-color);
    font-size: 1.8em;
    margin-top: 20px;
    margin-bottom: 15px;
}

.page-vip-loyalty-programs-vip-exclusive-events__reward-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto;
}

.page-vip-loyalty-programs-vip-exclusive-events__cta-button--bottom {
    margin-top: 40px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.page-vip-loyalty-programs-vip-exclusive-events__faq-section {
    background-color: var(--page-vip-loyalty-programs-vip-exclusive-events-bg-light);
}

.page-vip-loyalty-programs-vip-exclusive-events__faq-item {
    background-color: #F8F8F8;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
}

.page-vip-loyalty-programs-vip-exclusive-events__faq-question {
    font-size: 1.3em;
    color: var(--page-vip-loyalty-programs-vip-exclusive-events-primary-color);
    padding: 20px;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #F0F4F8;
    transition: background-color 0.3s ease;
}

.page-vip-loyalty-programs-vip-exclusive-events__faq-question:hover {
    background-color: #E6EBF0;
}

.page-vip-loyalty-programs-vip-exclusive-events__faq-question::after {
    content: '+';
    font-size: 1.5em;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.page-vip-loyalty-programs-vip-exclusive-events__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-vip-loyalty-programs-vip-exclusive-events__faq-answer {
    padding: 0 20px 20px 20px;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    color: var(--page-vip-loyalty-programs-vip-exclusive-events-text-dark);
}

.page-vip-loyalty-programs-vip-exclusive-events__faq-answer.open {
    max-height: 500px; /* Adjust as needed */
    padding: 0 20px 20px 20px;
}

.page-vip-loyalty-programs-vip-exclusive-events__faq-answer p {
    margin-bottom: 0;
}

.page-vip-loyalty-programs-vip-exclusive-events__cta-final-section {
    background-color: var(--page-vip-loyalty-programs-vip-exclusive-events-primary-color);
    color: var(--page-vip-loyalty-programs-vip-exclusive-events-text-light);
    text-align: center;
    padding: 80px 0;
}

.page-vip-loyalty-programs-vip-exclusive-events__cta-final-section .page-vip-loyalty-programs-vip-exclusive-events__section-title {
    color: var(--page-vip-loyalty-programs-vip-exclusive-events-secondary-color);
}

.page-vip-loyalty-programs-vip-exclusive-events__final-cta-description {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #E0E0E0;
}

.page-vip-loyalty-programs-vip-exclusive-events__cta-button--final {
    background-color: var(--page-vip-loyalty-programs-vip-exclusive-events-secondary-color);
    color: var(--page-vip-loyalty-programs-vip-exclusive-events-primary-color);
    font-size: 1.2em;
    padding: 18px 35px;
}

.page-vip-loyalty-programs-vip-exclusive-events__cta-button--final:hover {
    background-color: #e6c200;
    transform: translateY(-4px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-vip-loyalty-programs-vip-exclusive-events__hero-title {
        font-size: 2.8em;
    }
    .page-vip-loyalty-programs-vip-exclusive-events__section-title {
        font-size: 2em;
    }
    .page-vip-loyalty-programs-vip-exclusive-events__content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .page-vip-loyalty-programs-vip-exclusive-events__content-wrapper--reversed {
        flex-direction: column;
    }
    .page-vip-loyalty-programs-vip-exclusive-events__text-content {
        padding-right: 0;
    }
    .page-vip-loyalty-programs-vip-exclusive-events__image-wrapper {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .page-vip-loyalty-programs-vip-exclusive-events__hero-section {
        padding: 80px 0;
    }
    .page-vip-loyalty-programs-vip-exclusive-events__hero-title {
        font-size: 2.2em;
    }
    .page-vip-loyalty-programs-vip-exclusive-events__hero-description {
        font-size: 1em;
    }
    .page-vip-loyalty-programs-vip-exclusive-events__section-title {
        font-size: 1.8em;
    }
    .page-vip-loyalty-programs-vip-exclusive-events__introduction-section,
    .page-vip-loyalty-programs-vip-exclusive-events__rewards-section,
    .page-vip-loyalty-programs-vip-exclusive-events__how-to-join-section,
    .page-vip-loyalty-programs-vip-exclusive-events__faq-section,
    .page-vip-loyalty-programs-vip-exclusive-events__cta-final-section {
        padding: 60px 0;
    }
    .page-vip-loyalty-programs-vip-exclusive-events__reward-item {
        padding: 20px;
    }
    .page-vip-loyalty-programs-vip-exclusive-events__reward-item h3 {
        font-size: 1.5em;
    }
    .page-vip-loyalty-programs-vip-exclusive-events__faq-question {
        font-size: 1.1em;
        padding: 15px;
    }
    .page-vip-loyalty-programs-vip-exclusive-events__faq-answer {
        padding: 0 15px 15px 15px;
    }
    .page-vip-loyalty-programs-vip-exclusive-events__faq-answer.open {
        padding: 0 15px 15px 15px;
    }
}

@media (max-width: 576px) {
    .page-vip-loyalty-programs-vip-exclusive-events__hero-title {
        font-size: 1.8em;
    }
    .page-vip-loyalty-programs-vip-exclusive-events__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-vip-loyalty-programs-vip-exclusive-events__section-title {
        font-size: 1.5em;
    }
    .page-vip-loyalty-programs-vip-exclusive-events__text-content h3 {
        font-size: 1.4em;
    }
    .page-vip-loyalty-programs-vip-exclusive-events__benefits-list li,
    .page-vip-loyalty-programs-vip-exclusive-events__steps-list li {
        padding: 10px 15px;
        font-size: 0.9em;
    }
    .page-vip-loyalty-programs-vip-exclusive-events__reward-icon {
        width: 60px;
        height: 60px;
    }
    .page-vip-loyalty-programs-vip-exclusive-events__reward-item h3 {
        font-size: 1.3em;
    }
    .page-vip-loyalty-programs-vip-exclusive-events__faq-question {
        font-size: 1em;
    }
    .page-vip-loyalty-programs-vip-exclusive-events__final-cta-description {
        font-size: 1em;
    }
    .page-vip-loyalty-programs-vip-exclusive-events__cta-button--final {
        font-size: 1.1em;
        padding: 15px 30px;
    }
}