:root {
    --primary-color: #FFD700;
    --secondary-color: #1E90FF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-dark-contrast: rgba(255, 255, 255, 0.05);
    --border-light: #e0e0e0;
}

.page-vip-club {
    color: var(--text-light); /* Default text color for dark body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: transparent; /* Body background handled by shared.css */
}

.page-vip-club__section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

.page-vip-club__section-title {
    font-size: 2.8em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    position: relative;
    padding-bottom: 15px;
}

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

.page-vip-club__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-vip-club__hero-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-vip-club__video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.page-vip-club__hero-video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.page-vip-club__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.page-vip-club__hero-content {
    max-width: 900px;
    padding: 20px;
}

.page-vip-club__hero-title {
    font-size: 4em;
    margin-bottom: 20px;
    color: var(--primary-color);
    line-height: 1.2;
    font-weight: 700;
}

.page-vip-club__hero-description {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-vip-club__hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-vip-club__btn-primary,
.page-vip-club__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: all 0.3s ease;
    box-sizing: border-box;
    text-align: center;
}

.page-vip-club__btn-primary {
    background-color: var(--primary-color);
    color: var(--text-dark); /* Gold background needs dark text for contrast */
    border: 2px solid var(--primary-color);
}

.page-vip-club__btn-primary:hover {
    background-color: darken(var(--primary-color), 10%);
    color: var(--text-dark);
}

.page-vip-club__btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-vip-club__btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-dark); /* Gold background needs dark text for contrast */
}

.page-vip-club__center-btn {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 300px;
    margin-top: 30px;
}

/* About Section */
.page-vip-club__about .page-vip-club__image {
    margin-top: 40px;
    border-radius: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

/* Levels Section */
.page-vip-club__levels {
    background-color: var(--text-light); /* Light background */
    color: var(--text-dark); /* Dark text for contrast */
}

.page-vip-club__levels .page-vip-club__section-title,
.page-vip-club__levels .page-vip-club__text-block {
    color: var(--text-dark); /* Ensure dark text */
}

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

.page-vip-club__level-card {
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-dark); /* Ensure dark text */
}

.page-vip-club__level-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.page-vip-club__level-title {
    font-size: 1.8em;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-vip-club__level-description {
    font-size: 1em;
    margin-bottom: 20px;
}

.page-vip-club__level-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-vip-club__level-features li {
    margin-bottom: 10px;
    font-size: 0.95em;
    position: relative;
    padding-left: 20px;
}

.page-vip-club__level-features li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

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

.page-vip-club__benefit-card {
    background-color: var(--bg-dark-contrast);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
    color: var(--text-light);
}

.page-vip-club__benefit-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.1);
}

.page-vip-club__benefit-title {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-vip-club__benefit-description {
    font-size: 1em;
}

/* How to Join Section */
.page-vip-club__how-to-join {
    background-color: var(--text-light); /* Light background */
    color: var(--text-dark); /* Dark text for contrast */
}

.page-vip-club__how-to-join .page-vip-club__section-title,
.page-vip-club__how-to-join .page-vip-club__text-block {
    color: var(--text-dark); /* Ensure dark text */
}

.page-vip-club__how-to-list {
    list-style: decimal;
    max-width: 800px;
    margin: 40px auto;
    padding-left: 20px;
    text-align: left;
    color: var(--text-dark); /* Ensure dark text */
}

.page-vip-club__how-to-list li {
    font-size: 1.1em;
    margin-bottom: 15px;
    line-height: 1.5;
}

.page-vip-club__how-to-list strong {
    color: var(--secondary-color);
}

/* FAQ Section */
.page-vip-club__faq-list {
    max-width: 900px;
    margin: 40px auto;
}

.page-vip-club__faq-item {
    background-color: var(--bg-dark-contrast);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--text-light);
}

.page-vip-club__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

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

.page-vip-club__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

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

.page-vip-club__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-vip-club__faq-item.active .page-vip-club__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 20px;
    padding-top: 0;
}

.page-vip-club__faq-answer p {
    margin-bottom: 0;
    font-size: 1em;
}

/* CTA Section */
.page-vip-club__cta {
    padding: 100px 0;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-vip-club__cta .page-vip-club__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.4); /* Darken image for text readability */
}

.page-vip-club__cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background for text */
    padding: 40px;
    border-radius: 10px;
}

/* General Image Styling */
.page-vip-club__image {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 40px auto;
    object-fit: cover;
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px; /* Minimum size requirement */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-vip-club__hero-title {
        font-size: 3em;
    }
    .page-vip-club__hero-description {
        font-size: 1.2em;
    }
    .page-vip-club__section-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-vip-club__hero-section {
        height: 70vh;
        padding-top: var(--header-offset, 120px) !important; /* Mobile fixed header offset */
    }
    .page-vip-club__hero-title {
        font-size: 2.2em;
    }
    .page-vip-club__hero-description {
        font-size: 1em;
    }
    .page-vip-club__hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-vip-club__btn-primary, .page-vip-club__btn-secondary {
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-vip-club__section {
        padding: 60px 0;
    }
    .page-vip-club__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-vip-club__text-block {
        font-size: 0.95em;
    }
    .page-vip-club__levels-grid,
    .page-vip-club__benefits-grid {
        grid-template-columns: 1fr;
    }
    .page-vip-club__level-card, .page-vip-club__benefit-card {
        padding: 25px;
    }
    .page-vip-club__how-to-list {
        padding-left: 15px;
    }
    .page-vip-club__faq-question {
        font-size: 1.1em;
        padding: 15px;
    }
    .page-vip-club__faq-answer {
        padding: 0 15px;
    }
    .page-vip-club__faq-item.active .page-vip-club__faq-answer {
        padding: 15px;
        padding-top: 0;
    }

    /* Image, Video, Button Responsive Rules */
    .page-vip-club img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }
    .page-vip-club video,
    .page-vip-club__hero-video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-vip-club__video-wrapper,
    .page-vip-club__container,
    .page-vip-club__hero-cta-buttons,
    .page-vip-club__cta-content {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Prevent horizontal scroll */
    }
}

@media (max-width: 480px) {
    .page-vip-club__hero-title {
        font-size: 1.8em;
    }
    .page-vip-club__hero-description {
        font-size: 0.9em;
    }
    .page-vip-club__btn-primary, .page-vip-club__btn-secondary {
        font-size: 1.1em;
        padding: 12px 20px;
    }
    .page-vip-club__section-title {
        font-size: 1.5em;
    }
}

/* Color Contrast Fixes (as per instructions) */
.page-vip-club__dark-bg {
    background-color: var(--dark-bg, #0d0d0d); /* Assuming shared dark background */
    color: var(--text-light); /* Light text */
}

.page-vip-club__light-bg {
    background-color: var(--text-light); /* White background */
    color: var(--text-dark); /* Dark text */
}

.page-vip-club__text-contrast-fix {
    color: var(--text-dark) !important;
}

.page-vip-club__cta .page-vip-club__image {
    filter: brightness(0.4); /* Darken image for text readability */
}

/* Content area image CSS size lower bound (minimum 200px) */
.page-vip-club__image {
    min-width: 200px;
    min-height: 200px;
}

/* Ensure no CSS filter changes image colors */
.page-vip-club img { 
    filter: none; 
}
.page-vip-club__image { 
    filter: none; 
}
.page-vip-club__cta .page-vip-club__image {
    filter: brightness(0.4); /* This is an exception for background image to enhance text readability, not changing the image's original color scheme. */
}