.page-vip-club {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light body background */
    background-color: #f8f9fa; /* Inherited from body, explicit for clarity */
}

/* --- Global Container and Section Styling --- */
.page-vip-club__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-vip-club__section {
    padding: 60px 0;
    text-align: center;
}

.page-vip-club__section-title {
    font-size: clamp(28px, 4vw, 48px); /* Responsive H2 */
    color: #11A84E; /* Brand color for titles */
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.page-vip-club__section-title--light {
    color: #F2FFF6; /* Light text for dark backgrounds */
}

.page-vip-club__text-block {
    font-size: 16px;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #333333; /* Default text color */
}

.page-vip-club__text-block--light {
    color: #F2FFF6; /* Light text for dark backgrounds */
}

.page-vip-club__small-text {
    font-size: 14px;
    color: #A7D9B8; /* Secondary text color on dark backgrounds */
    margin-top: 30px;
}

/* --- Dark Background Sections --- */
.page-vip-club__dark-bg {
    background-color: #08160F; /* Custom background color */
    color: #F2FFF6; /* Main text color for dark backgrounds */
}

/* --- Hero Section --- */
.page-vip-club__hero-section {
    position: relative;
    padding: 10px 0 60px; /* Small top padding, not var(--header-offset) */
    overflow: hidden;
}

.page-vip-club__hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 0; /* Aspect ratio trick */
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    margin-bottom: 40px; /* Space between image and content */
}

.page-vip-club__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; /* Ensure no extra space below image */
    min-width: 200px; /* Minimum image size */
    min-height: 200px;
}

.page-vip-club__hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 1; /* Ensure content is above image if any overlap issues */
    position: relative;
}

.page-vip-club__main-title {
    font-size: clamp(36px, 5vw, 60px); /* Responsive H1 */
    color: #F2FFF6; /* Light text for dark background */
    margin-bottom: 20px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
}

.page-vip-club__subtitle {
    font-size: clamp(18px, 2.5vw, 24px);
    color: #A7D9B8; /* Secondary light text */
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-vip-club__cta-buttons--center {
    margin-top: 40px;
}

.page-vip-club__btn-primary,
.page-vip-club__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none; /* Reset border for buttons */
    box-sizing: border-box;
    max-width: 100%; /* Ensure responsiveness */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
}

.page-vip-club__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Custom button gradient */
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-vip-club__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    box-shadow: 0 6px 20px rgba(17, 168, 78, 0.6);
    transform: translateY(-2px);
}

.page-vip-club__btn-secondary {
    background-color: transparent;
    color: #57E38D; /* Glow color for secondary button text */
    border: 2px solid #57E38D;
}

.page-vip-club__btn-secondary:hover {
    background-color: #57E38D;
    color: #08160F; /* Dark text on glow background */
    transform: translateY(-2px);
}

/* --- Intro Section --- */
.page-vip-club__intro-section {
    background-color: #f8f9fa; /* Light background */
    color: #333333;
}

/* --- Tiers Section --- */
.page-vip-club__tiers-section {
    background-color: #08160F; /* Dark background */
    color: #F2FFF6;
}

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

.page-vip-club__tier-card {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #F2FFF6; /* Main text color for dark cards */
    border: 1px solid #2E7A4E; /* Border color */
}

.page-vip-club__tier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-vip-club__tier-image {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
    min-width: 200px; /* Enforce min size */
    min-height: 200px;
}

.page-vip-club__tier-title {
    font-size: 24px;
    font-weight: 700;
    color: #F2C14E; /* Gold color for tier titles */
    margin-bottom: 15px;
}

.page-vip-club__tier-description {
    font-size: 15px;
    color: #A7D9B8; /* Secondary text color */
}

/* --- Privileges Section --- */
.page-vip-club__privileges-section {
    background-color: #f8f9fa; /* Light background */
    color: #333333;
}

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

.page-vip-club__privilege-item {
    background-color: #ffffff; /* Card background for light section */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #333333; /* Dark text for light cards */
    border: 1px solid #e0e0e0; /* Light border */
}

.page-vip-club__privilege-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-vip-club__privilege-icon {
    width: 100%;
    max-width: 250px; /* Max width for icons */
    height: auto;
    object-fit: contain;
    margin-bottom: 20px;
    min-width: 200px; /* Enforce min size */
    min-height: 200px;
}

.page-vip-club__privilege-title {
    font-size: 22px;
    font-weight: 700;
    color: #11A84E; /* Brand color for titles */
    margin-bottom: 15px;
}

.page-vip-club__privilege-description {
    font-size: 16px;
    color: #555555;
}

/* --- Join Section --- */
.page-vip-club__join-section {
    background-color: #08160F; /* Dark background */
    color: #F2FFF6;
}

.page-vip-club__join-steps {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-vip-club__step-item {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: left;
    color: #F2FFF6; /* Main text color for dark cards */
    border: 1px solid #2E7A4E; /* Border color */
}

.page-vip-club__step-item a {
    color: #57E38D; /* Link color for dark background */
    text-decoration: underline;
}

.page-vip-club__step-item a:hover {
    color: #2AD16F;
}

.page-vip-club__step-title {
    font-size: 20px;
    font-weight: 700;
    color: #F2C14E; /* Gold color for step titles */
    margin-bottom: 15px;
}

.page-vip-club__step-description {
    font-size: 16px;
    color: #A7D9B8; /* Secondary text color */
}

/* --- FAQ Section --- */
.page-vip-club__faq-section {
    background-color: #f8f9fa; /* Light background */
    color: #333333;
}

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

.page-vip-club__faq-item {
    background-color: #ffffff; /* Card background for light section */
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #333333; /* Dark text for light cards */
}

.page-vip-club__faq-item[open] {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.page-vip-club__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 18px;
    font-weight: 600;
    color: #11A84E; /* Brand color for questions */
    cursor: pointer;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
    user-select: none;
    list-style: none; /* Remove default marker */
    -webkit-tap-highlight-color: transparent; /* Remove tap highlight on mobile */
}

/* Hide default marker for details/summary */
.page-vip-club__faq-item summary::-webkit-details-marker {
    display: none;
}
.page-vip-club__faq-item summary::marker {
    display: none;
}

.page-vip-club__faq-question:hover {
    background-color: #eaf7ed;
}

.page-vip-club__faq-toggle {
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.3s ease;
    color: #11A84E;
}

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

.page-vip-club__faq-answer {
    padding: 20px 25px;
    font-size: 16px;
    color: #555555;
    background-color: #ffffff;
    border-top: 1px solid #f0f0f0;
}

.page-vip-club__faq-answer p {
    margin: 0;
}

/* Text color for links in light sections */
.page-vip-club__privilege-item a,
.page-vip-club__faq-answer a {
    color: #11A84E; /* Brand color */
    text-decoration: underline;
}

.page-vip-club__privilege-item a:hover,
.page-vip-club__faq-answer a:hover {
    color: #22C768; /* Auxiliary color */
}

/* --- Bottom CTA Section --- */
.page-vip-club__cta-bottom {
    background-color: #0A4B2C; /* Deep Green custom color */
    padding: 80px 0;
}

.page-vip-club__cta-content {
    max-width: 800px;
    margin: 0 auto;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
    .page-vip-club__section {
        padding: 40px 0;
    }
    .page-vip-club__hero-content {
        padding: 0 15px;
    }
    .page-vip-club__container {
        padding: 0 15px;
    }
    .page-vip-club__tiers-grid,
    .page-vip-club__privileges-grid,
    .page-vip-club__join-steps {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    .page-vip-club__btn-primary,
    .page-vip-club__btn-secondary {
        padding: 12px 25px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .page-vip-club {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-vip-club__hero-section {
        padding-bottom: 40px;
    }
    .page-vip-club__hero-image-wrapper {
        margin-bottom: 20px;
    }
    .page-vip-club__main-title {
        font-size: clamp(30px, 8vw, 40px);
    }
    .page-vip-club__subtitle {
        font-size: clamp(16px, 4vw, 20px);
    }
    .page-vip-club__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-vip-club__btn-primary,
    .page-vip-club__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-vip-club__cta-buttons,
    .page-vip-club__button-group,
    .page-vip-club__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }

    /* Images responsiveness */
    .page-vip-club img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-vip-club__section,
    .page-vip-club__card,
    .page-vip-club__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    /* Specific section padding for mobile */
    .page-vip-club__hero-section {
        padding-top: 10px !important;
    }
    .page-vip-club__tiers-grid,
    .page-vip-club__privileges-grid,
    .page-vip-club__join-steps {
        grid-template-columns: 1fr;
    }
    .page-vip-club__privilege-icon {
        width: 100%;
        max-width: 200px; /* Ensure it doesn't get too small visually */
        margin-left: auto;
        margin-right: auto;
    }
    .page-vip-club__tier-image {
        width: 100%;
        max-width: 200px;
        margin-left: auto;
        margin-right: auto;
    }
    .page-vip-club__faq-question {
        padding: 15px 20px;
        font-size: 16px;
    }
    .page-vip-club__faq-answer {
        padding: 15px 20px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .page-vip-club__section {
        padding: 30px 0;
    }
    .page-vip-club__main-title {
        font-size: clamp(24px, 10vw, 36px);
    }
    .page-vip-club__subtitle {
        font-size: clamp(15px, 4vw, 18px);
    }
    .page-vip-club__btn-primary,
    .page-vip-club__btn-secondary {
        font-size: 15px;
        padding: 10px 20px;
    }
    .page-vip-club__section-title {
        font-size: clamp(24px, 6vw, 36px);
    }
}

/* Ensure content images meet minimum size requirements */
.page-vip-club__tier-image,
.page-vip-club__privilege-icon {
    min-width: 200px;
    min-height: 200px;
}