/* General Styling for VIP Club Page */
.page-vip-club {
    font-family: Arial, sans-serif;
    color: #1F2D3D; /* Text Main */
    background-color: #F4F7FB; /* Background */
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

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

.page-vip-club__section-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem); /* Responsive font size */
    color: #000000; /* Custom Color_1776249996415 */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.2;
    padding-top: 20px; /* Small top padding for sections */
}

.page-vip-club__section-description {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: #1F2D3D; /* Text Main */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-vip-club__hero-section {
    background-color: #0a0909; /* Dark background for hero */
    padding-bottom: 50px;
    padding-top: 10px; /* Small top padding for first section */
}

.page-vip-club__hero-image-wrapper {
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
}

.page-vip-club__hero-image {
    width: 100%;
    height: auto; /* Prevent stretching */
    display: block;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 16/9; /* Default aspect ratio for hero */
}

.page-vip-club__hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-vip-club__main-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem); /* H1 font size with clamp */
    color: #FFFFFF;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-vip-club__hero-description {
    font-size: 1.15rem;
    color: #E0E0E0;
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.page-vip-club__btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    min-width: 180px;
    text-align: center;
}

.page-vip-club__btn--primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button */
    color: #FFFFFF;
    border: none;
}

.page-vip-club__btn--primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(47, 107, 255, 0.4);
}

.page-vip-club__btn--secondary {
    background-color: #FFFFFF;
    color: #2F6BFF; /* Primary Color */
    border: 2px solid #D6E2FF; /* Border */
}

.page-vip-club__btn--secondary:hover {
    background-color: #2F6BFF; /* Primary Color */
    color: #FFFFFF;
    border-color: #2F6BFF; /* Primary Color */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(47, 107, 255, 0.2);
}

/* Benefits Section */
.page-vip-club__benefits-section {
    padding: 80px 0;
    background-color: #F4F7FB; /* Background */
}

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

.page-vip-club__benefit-card {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #D6E2FF; /* Border */
}

.page-vip-club__benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.page-vip-club__benefit-icon {
    width: 250px; /* Minimum 200px */
    height: auto;
    max-width: 100%;
    margin: 0 auto 20px;
    display: block;
    border-radius: 8px; /* Slightly rounded corners for images */
    object-fit: cover;
    aspect-ratio: 3/2; /* Example aspect ratio */
}

.page-vip-club__card-title {
    font-size: 1.4rem;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-vip-club__card-description {
    font-size: 1rem;
    color: #1F2D3D; /* Text Main */
}

/* VIP Tiers Section */
.page-vip-club__tiers-section {
    padding: 80px 0;
    background-color: #0a0909; /* Dark background */
    color: #FFFFFF;
}

.page-vip-club__tiers-section .page-vip-club__section-title {
    color: #FFFFFF;
}

.page-vip-club__tiers-section .page-vip-club__section-description {
    color: #E0E0E0;
}

.page-vip-club__tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.page-vip-club__tier-card {
    background-color: #1a1a1a; /* Slightly lighter dark for card */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-vip-club__tier-name {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #A5C4FF; /* Glow */
}

.page-vip-club__tier-description {
    font-size: 1rem;
    color: #CCCCCC;
    margin-bottom: 25px;
    flex-grow: 1; /* Push list to bottom */
}

.page-vip-club__tier-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
    max-width: 200px;
    margin-top: 20px;
}

.page-vip-club__tier-features li {
    background-color: #2a2a2a;
    padding: 10px 15px;
    margin-bottom: 10px;
    border-radius: 6px;
    font-size: 0.95rem;
    color: #E0E0E0;
    display: flex;
    align-items: center;
}

.page-vip-club__tier-features li::before {
    content: '✅'; /* Checkmark emoji */
    margin-right: 10px;
    font-size: 0.9em;
}

.page-vip-club__cta-bottom {
    text-align: center;
}

.page-vip-club__cta-text {
    font-size: 1.3rem;
    color: #FFFFFF;
    margin-bottom: 30px;
    font-weight: bold;
}

/* How to Join Section */
.page-vip-club__join-section {
    padding: 80px 0;
    background-color: #F4F7FB; /* Background */
}

.page-vip-club__join-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.page-vip-club__step-card {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #D6E2FF; /* Border */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-vip-club__step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #2F6BFF; /* Primary Color */
    color: #FFFFFF;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 0 0 8px rgba(47, 107, 255, 0.2);
}

.page-vip-club__step-card .page-vip-club__card-title {
    margin-bottom: 10px;
}

.page-vip-club__step-card .page-vip-club__card-description {
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-vip-club__link-text {
    color: #2F6BFF; /* Primary Color */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-vip-club__link-text:hover {
    color: #6FA3FF; /* Secondary Color */
    text-decoration: underline;
}

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

.page-vip-club__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-vip-club__faq-item {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    padding: 25px 30px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid #D6E2FF; /* Border */
}

.page-vip-club__faq-question {
    font-size: 1.2rem;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 15px;
    font-weight: bold;
    cursor: pointer;
}

.page-vip-club__faq-answer {
    font-size: 1rem;
    color: #1F2D3D; /* Text Main */
    line-height: 1.6;
    display: none; /* Hidden by default for accordion */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-vip-club__main-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }

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

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

    .page-vip-club__btn {
        width: 100%;
        max-width: 300px; /* Constrain width for mobile buttons */
        margin: 0 auto;
    }

    .page-vip-club__benefits-grid,
    .page-vip-club__tiers-grid,
    .page-vip-club__join-steps {
        grid-template-columns: 1fr;
    }

    .page-vip-club__benefits-section,
    .page-vip-club__tiers-section,
    .page-vip-club__join-section,
    .page-vip-club__faq-section {
        padding: 50px 0;
    }

    .page-vip-club__section-title {
        font-size: clamp(1.3rem, 5vw, 2rem);
        margin-bottom: 30px;
    }

    .page-vip-club__section-description {
        font-size: 0.95rem;
        margin-bottom: 40px;
    }

    /* Ensure images in content area don't overflow */
    .page-vip-club img {
        max-width: 100%;
        height: auto;
    }

    /* Content area images must be at least 200px. No smaller than 200px here. */
    .page-vip-club__benefit-icon {
        width: 100%; /* Make it fill card width on mobile */
        min-width: 200px; /* Ensure minimum size */
        height: auto;
    }
}

/* Ensure no images below 200px in content area */
.page-vip-club__benefits-section img,
.page-vip-club__tiers-section img,
.page-vip-club__join-section img,
.page-vip-club__faq-section img {
    min-width: 200px;
    min-height: 200px;
}