.page-vip-club {
    color: #333333; /* Dark text for readability on assumed light body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header, default for desktop */
    overflow-x: hidden; /* Prevent horizontal scroll on main content */
}

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

/* Hero Section */
.page-vip-club__hero-section {
    position: relative;
    background-color: #000000; /* Dark background for hero section */
    color: #ffffff; /* Light text on dark background */
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
}

.page-vip-club__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6; /* Slightly dim the background image for text readability */
    z-index: 1;
}

.page-vip-club__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.page-vip-club__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FCBC45; /* Accent color for main title */
}

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

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

.page-vip-club__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-vip-club__button--register {
    background-color: #FCBC45; /* Login color for register button */
    color: #000000; /* Dark text on accent background */
}

.page-vip-club__button--register:hover {
    background-color: #e0a73a;
}

.page-vip-club__button--login {
    background-color: #000000; /* Main color for login button */
    color: #FCBC45; /* Accent text on dark background */
    border: 2px solid #FCBC45;
}

.page-vip-club__button--login:hover {
    background-color: #FCBC45;
    color: #000000;
}

/* Section Titles */
.page-vip-club__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    color: #000000;
}

.page-vip-club__sub-title {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #000000;
}

.page-vip-club__section-text {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px auto;
}

/* About Section */
.page-vip-club__about-section {
    padding: 60px 0;
    background-color: #ffffff; /* Light background */
}

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

.page-vip-club__feature-card {
    background-color: #000000; /* Dark background for feature cards */
    color: #ffffff; /* Light text */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-vip-club__feature-card:hover {
    transform: translateY(-10px);
}

.page-vip-club__feature-icon {
    width: 200px; /* Min width for images */
    height: auto;
    margin-bottom: 20px;
    border-radius: 5px;
}

.page-vip-club__feature-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #FCBC45; /* Accent color for feature titles */
}

.page-vip-club__feature-description {
    font-size: 1em;
    line-height: 1.5;
}

/* Levels Section */
.page-vip-club__levels-section {
    padding: 60px 0;
    background-color: #f5f5f5; /* Slightly off-white background */
}

.page-vip-club__detail-list {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.page-vip-club__detail-card {
    background-color: #ffffff; /* White background for detail card */
    color: #333333; /* Dark text */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    text-align: center;
}

.page-vip-club__detail-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 25px;
}

.page-vip-club__detail-title {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #000000;
}

.page-vip-club__detail-title a {
    text-decoration: none;
    color: #000000;
    transition: color 0.3s ease;
}

.page-vip-club__detail-title a:hover {
    color: #FCBC45;
}

.page-vip-club__detail-description {
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 25px;
}

.page-vip-club__button--view-details {
    background-color: #FCBC45;
    color: #000000;
}

.page-vip-club__button--view-details:hover {
    background-color: #e0a73a;
}

/* CTA Section */
.page-vip-club__cta-section {
    background-color: #000000; /* Dark background */
    color: #ffffff; /* Light text */
    padding: 80px 0;
    text-align: center;
}

.page-vip-club__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #FCBC45;
}

.page-vip-club__cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-vip-club__button--cta {
    background-color: #FCBC45;
    color: #000000;
}

.page-vip-club__button--cta:hover {
    background-color: #e0a73a;
}

/* FAQ Section */
.page-vip-club__faq-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-vip-club__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-vip-club__faq-question {
    font-size: 1.3em;
    color: #000000;
    margin-bottom: 10px;
}

.page-vip-club__faq-answer {
    font-size: 1em;
    color: #555555;
}

/* Long Content Section */
.page-vip-club__long-content {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.page-vip-club__long-content p {
    margin-bottom: 20px;
    font-size: 1.05em;
    color: #444444;
}

.page-vip-club__long-content .page-vip-club__button--long-content-cta {
    margin-top: 40px;
    background-color: #FCBC45;
    color: #000000;
}

.page-vip-club__long-content .page-vip-club__button--long-content-cta:hover {
    background-color: #e0a73a;
}

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

@media (max-width: 768px) {
    .page-vip-club__hero-section {
        padding: 60px 0;
    }
    .page-vip-club__hero-title {
        font-size: 2.5em;
    }
    .page-vip-club__hero-description {
        font-size: 1.1em;
    }
    .page-vip-club__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-vip-club__button {
        width: 80%;
        margin: 0 auto;
    }

    .page-vip-club__feature-card {
        padding: 25px;
    }
    .page-vip-club__feature-icon {
        width: 250px; /* Ensure min size for mobile */
    }

    .page-vip-club__detail-card {
        max-width: 100%;
        padding: 25px;
    }

    .page-vip-club__cta-title {
        font-size: 2em;
    }
    .page-vip-club__cta-description {
        font-size: 1em;
    }
    .page-vip-club__faq-question {
        font-size: 1.2em;
    }

    /* Mobile image constraint */
    .page-vip-club img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-vip-club__hero-title {
        font-size: 2em;
    }
    .page-vip-club__section-title {
        font-size: 1.8em;
    }
    .page-vip-club__sub-title {
        font-size: 1.5em;
    }
    .page-vip-club__button {
        width: 90%;
    }
    .page-vip-club__feature-icon {
        width: 200px; /* Maintain min size for images */
    }
}