.page-vip-club {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Dark body background #111, so light text */
    background-color: transparent; /* Body background is handled by shared.css as #111 */
}

/* Fixed header offset */
.page-vip-club__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
    min-height: 600px; /* Minimum height for hero section */
}

.page-vip-club__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-vip-club__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: 2;
}

.page-vip-club__hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 20px;
    color: #ffffff;
}

.page-vip-club__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-vip-club__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

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

.page-vip-club__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    color: #ffffff; /* Default for dark background */
}

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

.page-vip-club__intro-section,
.page-vip-club__privileges-section,
.page-vip-club__why-join-section,
.page-vip-club__cta-section {
    padding: 60px 0;
    text-align: center;
}

.page-vip-club__tiers-section,
.page-vip-club__join-section,
.page-vip-club__faq-section {
    padding: 60px 0;
    text-align: center;
    background-color: #1a1a1a; /* Slightly lighter dark background for contrast */
}

.page-vip-club__dark-bg {
    background-color: #017439; /* Brand primary color as dark background */
    color: #ffffff;
}

.page-vip-club__text-block {
    max-width: 800px;
    margin: 0 auto 30px auto;
    font-size: 1.1em;
    color: #f0f0f0; /* Light text for dark backgrounds */
}

.page-vip-club__btn-primary {
    display: inline-block;
    background-color: #C30808; /* Register/Login color */
    color: #FFFF00; /* Register/Login font color */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1em;
}

.page-vip-club__btn-primary:hover {
    background-color: #a30606;
    transform: translateY(-2px);
}

.page-vip-club__btn-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #017439; /* Primary brand color */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid #017439;
    cursor: pointer;
    font-size: 1em;
}

.page-vip-club__btn-secondary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.page-vip-club__btn-register {
    display: inline-block;
    background-color: #C30808; /* Register/Login color */
    color: #FFFF00; /* Register/Login font color */
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9em;
    margin-top: 15px;
}

.page-vip-club__btn-register:hover {
    background-color: #a30606;
}

.page-vip-club__btn-login {
    display: inline-block;
    background-color: #C30808; /* Login button color */
    color: #FFFF00; /* Login font color */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1em;
}

.page-vip-club__btn-login:hover {
    background-color: #a30606;
    transform: translateY(-2px);
}


/* Tiers Section */
.page-vip-club__tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    padding: 0 20px;
}

.page-vip-club__tier-card {
    background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for dark background */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.page-vip-club__tier-card:hover {
    transform: translateY(-5px);
}

.page-vip-club__tier-title {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #FFFF00; /* Yellow for VIP titles */
}

.page-vip-club__tier-description {
    font-size: 1em;
    margin-bottom: 20px;
    color: #f0f0f0;
}

.page-vip-club__tier-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-vip-club__tier-benefits li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #f0f0f0;
}

.page-vip-club__tier-benefits li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #017439; /* Primary brand green for checkmarks */
}

/* Privileges Section */
.page-vip-club__privileges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    padding: 0 20px;
}

.page-vip-club__privilege-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.page-vip-club__privilege-card:hover {
    transform: translateY(-5px);
}

.page-vip-club__card-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #FFFF00; /* Yellow for card titles */
}

.page-vip-club__privilege-card p {
    color: #f0f0f0;
}

/* Join Section Steps */
.page-vip-club__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
    padding: 0 20px;
}

.page-vip-club__step-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-vip-club__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #017439; /* Primary brand color */
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Why Join Section */
.page-vip-club__why-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 50px auto;
    text-align: left;
}

.page-vip-club__why-list li {
    background-color: rgba(255, 255, 255, 0.08);
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 10px;
    font-size: 1.1em;
    line-height: 1.8;
    position: relative;
    padding-left: 50px;
    color: #f0f0f0;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-vip-club__why-list li strong {
    color: #FFFF00; /* Yellow for emphasis */
}

.page-vip-club__why-list li::before {
    content: '✨';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
}

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

.page-vip-club__faq-item {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #ffffff;
}

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

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

.page-vip-club__faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: #ffffff;
}

.page-vip-club__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: #FFFF00; /* Yellow toggle icon */
    transition: transform 0.3s ease;
}

.page-vip-club__faq-item.active .page-vip-club__faq-toggle {
    transform: rotate(45deg); /* Plus sign to X or minus */
}

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

.page-vip-club__faq-item.active .page-vip-club__faq-answer {
    max-height: 1000px !important; /* Sufficient height for content */
    padding: 20px;
    padding-top: 0; /* Adjust padding for better flow */
}

.page-vip-club__faq-answer p {
    margin: 0;
    padding-bottom: 15px;
}

/* CTA Section */
.page-vip-club__cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.page-vip-club__cta-image {
    margin-top: 50px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    max-width: 100%; /* Ensure responsiveness */
    height: auto;
}

/* Image specific styles */
.page-vip-club__image-full {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px;
    object-fit: cover;
}

.page-vip-club__image-centered {
    display: block;
    margin: 40px auto 0 auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px;
    object-fit: cover;
}

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

@media (max-width: 768px) {
    .page-vip-club__hero-section {
        min-height: 450px;
        padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
    }

    .page-vip-club__hero-title {
        font-size: 2.2em;
    }

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

    .page-vip-club__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-vip-club__btn-primary,
    .page-vip-club__btn-secondary,
    .page-vip-club__btn-login,
    .page-vip-club__btn-register {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px !important;
        margin: 0 auto;
    }

    .page-vip-club__cta-actions {
        flex-direction: column;
        gap: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px; /* Add padding to container */
    }

    .page-vip-club__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-vip-club__text-block {
        font-size: 1em;
    }

    .page-vip-club__tiers-grid,
    .page-vip-club__privileges-grid,
    .page-vip-club__steps-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    .page-vip-club__why-list,
    .page-vip-club__faq-list {
        padding: 0 15px;
    }

    /* Mobile image responsiveness */
    .page-vip-club img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-vip-club__hero-section,
    .page-vip-club__intro-section,
    .page-vip-club__tiers-section,
    .page-vip-club__privileges-section,
    .page-vip-club__join-section,
    .page-vip-club__why-join-section,
    .page-vip-club__faq-section,
    .page-vip-club__cta-section,
    .page-vip-club__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important; /* Prevent horizontal scroll */
    }
}

@media (max-width: 480px) {
    .page-vip-club__hero-title {
        font-size: 1.8em;
    }
    .page-vip-club__section-title {
        font-size: 1.5em;
    }
    .page-vip-club__btn-primary,
    .page-vip-club__btn-secondary,
    .page-vip-club__btn-login,
    .page-vip-club__btn-register {
        padding: 10px 15px !important;
        font-size: 0.9em;
    }
}