/* style/vip-privileges-levels.css */
.page-vip-privileges-levels {
    font-family: Arial, sans-serif;
    color: #ffffff; /* Default text color for dark body background */
    background-color: transparent; /* Body background is handled by shared.css */
}

.page-vip-privileges-levels__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-vip-privileges-levels__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px);
}

.page-vip-privileges-levels__dark-bg {
    background-color: #26A9E0;
    color: #ffffff;
}

.page-vip-privileges-levels__light-bg {
    background-color: #ffffff;
    color: #333333;
}

.page-vip-privileges-levels__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-vip-privileges-levels__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtle background image */
}

.page-vip-privileges-levels__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-vip-privileges-levels__main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFFFFF;
    line-height: 1.2;
}

.page-vip-privileges-levels__intro-text {
    font-size: 1.2em;
    margin-bottom: 40px;
    line-height: 1.6;
    color: #f0f0f0;
}

/* Buttons */
.page-vip-privileges-levels__btn-primary,
.page-vip-privileges-levels__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    margin: 10px;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-vip-privileges-levels__btn-primary {
    background-color: #26A9E0;
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-vip-privileges-levels__btn-primary:hover {
    background-color: #1a8cc7;
    border-color: #1a8cc7;
}

.page-vip-privileges-levels__btn-secondary {
    background-color: #ffffff;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-vip-privileges-levels__btn-secondary:hover {
    background-color: #e0f2ff;
    color: #1a8cc7;
    border-color: #1a8cc7;
}

.page-vip-privileges-levels__cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* General Section Styling */
.page-vip-privileges-levels__overview-section,
.page-vip-privileges-levels__exclusive-benefits,
.page-vip-privileges-levels__how-to-join,
.page-vip-privileges-levels__cta-bottom {
    padding: 60px 0;
    text-align: center;
}

.page-vip-privileges-levels__section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #26A9E0;
}

.page-vip-privileges-levels__section-description {
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #f0f0f0;
}

/* Video Section */
.page-vip-privileges-levels__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    margin: 40px auto;
    max-width: 1000px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.page-vip-privileges-levels__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.page-vip-privileges-levels__video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
    pointer-events: none;
}

.page-vip-privileges-levels__video-caption {
    margin-top: 15px;
    font-size: 0.9em;
    color: #f0f0f0;
}

/* Levels Grid */
.page-vip-privileges-levels__levels-grid {
    padding: 80px 0;
}

.page-vip-privileges-levels__levels-grid .page-vip-privileges-levels__section-title {
    color: #FFFFFF;
}

.page-vip-privileges-levels__levels-grid .page-vip-privileges-levels__section-description {
    color: #f0f0f0;
}

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

.page-vip-privileges-levels__level-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #ffffff;
}

.page-vip-privileges-levels__level-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.page-vip-privileges-levels__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-vip-privileges-levels__card-title {
    font-size: 1.8em;
    color: #26A9E0;
    margin-bottom: 15px;
}

.page-vip-privileges-levels__card-text {
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

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

.page-vip-privileges-levels__card-features li {
    margin-bottom: 8px;
    font-size: 0.95em;
    color: #f0f0f0;
}

.page-vip-privileges-levels__card-features li::before {
    content: '✅';
    margin-right: 10px;
}

/* Exclusive Benefits */
.page-vip-privileges-levels__exclusive-benefits .page-vip-privileges-levels__section-description {
    color: #f0f0f0;
}

.page-vip-privileges-levels__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-vip-privileges-levels__benefit-item {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    color: #ffffff;
}

.page-vip-privileges-levels__benefit-icon {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-vip-privileges-levels__benefit-title {
    font-size: 1.5em;
    color: #26A9E0;
    margin-bottom: 10px;
}

.page-vip-privileges-levels__benefit-text {
    font-size: 1em;
    line-height: 1.5;
    color: #f0f0f0;
}

/* How to Join */
.page-vip-privileges-levels__how-to-join .page-vip-privileges-levels__section-description {
    color: #f0f0f0;
}

.page-vip-privileges-levels__steps-list {
    list-style: none;
    padding: 0;
    margin: 50px auto;
    max-width: 800px;
    text-align: left;
}

.page-vip-privileges-levels__steps-list li {
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 5px solid #26A9E0;
    padding: 20px 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    color: #ffffff;
}

.page-vip-privileges-levels__step-title {
    font-size: 1.4em;
    color: #26A9E0;
    margin-bottom: 10px;
}

.page-vip-privileges-levels__steps-list li p {
    font-size: 1em;
    line-height: 1.6;
    color: #f0f0f0;
}

/* FAQ Section */
.page-vip-privileges-levels__faq-section {
    padding: 80px 0;
}

.page-vip-privileges-levels__faq-section .page-vip-privileges-levels__section-title {
    color: #FFFFFF;
}

.page-vip-privileges-levels__faq-list {
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-vip-privileges-levels__faq-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    color: #ffffff;
}

.page-vip-privileges-levels__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.05);
    transition: background-color 0.3s ease;
    color: #ffffff;
}

.page-vip-privileges-levels__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.page-vip-privileges-levels__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
    color: #26A9E0;
}

.page-vip-privileges-levels__faq-item.active .page-vip-privileges-levels__faq-toggle {
    transform: rotate(45deg);
}

.page-vip-privileges-levels__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #f0f0f0;
    text-align: left;
}

.page-vip-privileges-levels__faq-item.active .page-vip-privileges-levels__faq-answer {
    max-height: 1000px !important;
    padding: 15px 30px 30px 30px;
}

.page-vip-privileges-levels__faq-answer p {
    margin: 0;
    line-height: 1.6;
}

/* CTA Bottom */
.page-vip-privileges-levels__cta-bottom {
    padding: 80px 0;
}

.page-vip-privileges-levels__cta-bottom .page-vip-privileges-levels__section-title,
.page-vip-privileges-levels__cta-bottom .page-vip-privileges-levels__section-description {
    color: #333333;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-vip-privileges-levels__main-title {
        font-size: 2.8em;
    }
    .page-vip-privileges-levels__section-title {
        font-size: 2em;
    }
    .page-vip-privileges-levels__grid,
    .page-vip-privileges-levels__benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-vip-privileges-levels {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-vip-privileges-levels__hero-section {
        min-height: 450px;
        padding: 60px 0;
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-vip-privileges-levels__main-title {
        font-size: 2.2em;
    }
    .page-vip-privileges-levels__intro-text {
        font-size: 1em;
    }
    .page-vip-privileges-levels__btn-primary,
    .page-vip-privileges-levels__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        margin: 5px 0;
    }
    .page-vip-privileges-levels__cta-buttons {
        flex-direction: column;
        gap: 10px;
        padding: 0 15px;
    }
    .page-vip-privileges-levels__section-title {
        font-size: 1.8em;
    }
    .page-vip-privileges-levels__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .page-vip-privileges-levels__overview-section,
    .page-vip-privileges-levels__exclusive-benefits,
    .page-vip-privileges-levels__how-to-join,
    .page-vip-privileges-levels__faq-section,
    .page-vip-privileges-levels__cta-bottom {
        padding: 40px 0;
    }
    .page-vip-privileges-levels__container {
        padding: 0 15px;
    }
    .page-vip-privileges-levels__grid,
    .page-vip-privileges-levels__benefits-grid {
        grid-template-columns: 1fr;
    }
    .page-vip-privileges-levels__level-card,
    .page-vip-privileges-levels__benefit-item {
        padding: 20px;
    }
    .page-vip-privileges-levels__card-title {
        font-size: 1.5em;
    }
    .page-vip-privileges-levels__faq-question {
        padding: 15px 20px;
        font-size: 1em;
    }
    .page-vip-privileges-levels__faq-answer {
        padding: 0 20px;
    }
    .page-vip-privileges-levels__faq-item.active .page-vip-privileges-levels__faq-answer {
        padding: 10px 20px 20px 20px;
    }
    /* Mobile image and video responsive adaptation */
    .page-vip-privileges-levels img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-vip-privileges-levels__hero-image-wrapper,
    .page-vip-privileges-levels__video-wrapper,
    .page-vip-privileges-levels__level-card,
    .page-vip-privileges-levels__benefit-item,
    .page-vip-privileges-levels__how-to-join,
    .page-vip-privileges-levels__faq-section,
    .page-vip-privileges-levels__cta-bottom {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-vip-privileges-levels video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
}

@media (max-width: 480px) {
    .page-vip-privileges-levels__main-title {
        font-size: 1.8em;
    }
    .page-vip-privileges-levels__section-title {
        font-size: 1.5em;
    }
    .page-vip-privileges-levels__faq-question {
        font-size: 0.9em;
    }
}