:root {
    --page-vip-club-benefits-bg: #08160F; /* Background */
    --page-vip-club-benefits-card-bg: #11271B; /* Card BG */
    --page-vip-club-benefits-text-main: #F2FFF6; /* Text Main */
    --page-vip-club-benefits-text-secondary: #A7D9B8; /* Text Secondary */
    --page-vip-club-benefits-border: #2E7A4E; /* Border */
    --page-vip-club-benefits-glow: #57E38D; /* Glow */
    --page-vip-club-benefits-gold: #F2C14E; /* Gold */
    --page-vip-club-benefits-divider: #1E3A2A; /* Divider */
    --page-vip-club-benefits-deep-green: #0A4B2C; /* Deep Green */
    --page-vip-club-benefits-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
}

.page-vip-club-benefits {
    background-color: var(--page-vip-club-benefits-bg);
    color: var(--page-vip-club-benefits-text-main);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Hero Section */
.page-vip-club-benefits__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; 
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    overflow: hidden; 
    text-align: center;
}

.page-vip-club-benefits__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 0; 
}

.page-vip-club-benefits__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.7); /* Slightly darken image for text contrast */
    min-height: 300px; 
}

.page-vip-club-benefits__hero-content {
    position: relative; 
    z-index: 1; 
    max-width: 900px;
    margin-top: 40px; 
    padding: 0 20px;
}

.page-vip-club-benefits__hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
    font-weight: bold;
    color: var(--page-vip-club-benefits-gold);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.page-vip-club-benefits__hero-description {
    font-size: 1.2rem;
    color: var(--page-vip-club-benefits-text-main);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* General Section Styling */
.page-vip-club-benefits__section {
    padding: 60px 20px;
    text-align: center;
}

.page-vip-club-benefits__container {
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-vip-club-benefits__section-title {
    font-size: 2.5rem;
    color: var(--page-vip-club-benefits-gold);
    margin-bottom: 20px;
    font-weight: bold;
}

.page-vip-club-benefits__section-description,
.page-vip-club-benefits__section-text {
    font-size: 1.1rem;
    color: var(--page-vip-club-benefits-text-secondary);
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* VIP Levels Grid */
.page-vip-club-benefits__vip-levels {
    background-color: var(--page-vip-club-benefits-card-bg);
}

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

.page-vip-benefits__level-card,
.page-vip-club-benefits__level-card {
    background-color: var(--page-vip-club-benefits-deep-green);
    border: 1px solid var(--page-vip-club-benefits-border);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.page-vip-club-benefits__level-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--page-vip-club-benefits-border);
}

.page-vip-club-benefits__level-title {
    font-size: 1.8rem;
    color: var(--page-vip-club-benefits-gold);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-vip-club-benefits__level-description {
    font-size: 1rem;
    color: var(--page-vip-club-benefits-text-secondary);
    flex-grow: 1; /* Allows description to take available space */
}

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

.page-vip-club-benefits__privilege-card {
    background-color: var(--page-vip-club-benefits-card-bg);
    border: 1px solid var(--page-vip-club-benefits-border);
    border-radius: 10px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

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

.page-vip-club-benefits__privilege-icon {
    width: 100%; /* Ensure images are responsive within card */
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--page-vip-club-benefits-border);
}

.page-vip-club-benefits__privilege-title {
    font-size: 1.6rem;
    color: var(--page-vip-club-benefits-gold);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-vip-club-benefits__privilege-text {
    font-size: 1rem;
    color: var(--page-vip-club-benefits-text-secondary);
}

/* Upgrade Steps Section */
.page-vip-club-benefits__upgrade {
    background-color: var(--page-vip-club-benefits-deep-green);
}

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

.page-vip-club-benefits__step-item {
    background-color: var(--page-vip-club-benefits-card-bg);
    border: 1px solid var(--page-vip-club-benefits-border);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-vip-club-benefits__step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--page-vip-club-benefits-button-gradient);
    color: var(--page-vip-club-benefits-text-main);
    border-radius: 50%;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 0 15px var(--page-vip-club-benefits-glow);
}

.page-vip-club-benefits__step-title {
    font-size: 1.5rem;
    color: var(--page-vip-club-benefits-gold);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-vip-club-benefits__step-text {
    font-size: 1rem;
    color: var(--page-vip-club-benefits-text-secondary);
}

/* FAQ Section */
.page-vip-club-benefits__faq-list {
    margin-top: 40px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-vip-club-benefits__faq-item {
    background-color: var(--page-vip-club-benefits-card-bg);
    border: 1px solid var(--page-vip-club-benefits-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-vip-club-benefits__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--page-vip-club-benefits-text-main);
    font-weight: bold;
    background-color: var(--page-vip-club-benefits-deep-green);
    transition: background-color 0.3s ease;
    list-style: none; /* For <summary> tag */
}

.page-vip-club-benefits__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker for <summary> */
}

.page-vip-club-benefits__faq-item[open] .page-vip-club-benefits__faq-question {
    background-color: var(--page-vip-club-benefits-border);
}

.page-vip-club-benefits__faq-qtext {
    flex-grow: 1;
}

.page-vip-club-benefits__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--page-vip-club-benefits-gold);
}

.page-vip-club-benefits__faq-answer {
    padding: 0 20px 20px;
    font-size: 1rem;
    color: var(--page-vip-club-benefits-text-secondary);
    line-height: 1.7;
}

/* Call to Action Bottom */
.page-vip-club-benefits__cta-bottom {
    background-color: var(--page-vip-club-benefits-deep-green);
    padding: 80px 20px;
}

.page-vip-club-benefits__cta-container {
    text-align: center;
}

.page-vip-club-benefits__cta-title {
    font-size: 2.8rem;
    color: var(--page-vip-club-benefits-gold);
    margin-bottom: 25px;
    font-weight: bold;
}

.page-vip-club-benefits__cta-text {
    font-size: 1.2rem;
    color: var(--page-vip-club-benefits-text-main);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-vip-club-benefits__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Buttons */
.page-vip-club-benefits__btn-primary,
.page-vip-club-benefits__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    max-width: 100%; /* Ensure responsive button */
    box-sizing: border-box; /* Ensure padding is included in width */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Allow long words to break */
}

.page-vip-club-benefits__btn-primary {
    background: var(--page-vip-club-benefits-button-gradient);
    color: var(--page-vip-club-benefits-text-main);
    box-shadow: 0 5px 20px rgba(87, 227, 141, 0.4); /* Glow color shadow */
}

.page-vip-club-benefits__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(87, 227, 141, 0.6);
}

.page-vip-club-benefits__btn-secondary {
    background-color: transparent;
    color: var(--page-vip-club-benefits-gold);
    border: 2px solid var(--page-vip-club-benefits-gold);
}

.page-vip-club-benefits__btn-secondary:hover {
    background-color: rgba(242, 193, 78, 0.1);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-vip-club-benefits__hero-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
    .page-vip-club-benefits__section-title {
        font-size: 2.2rem;
    }
    .page-vip-club-benefits__cta-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .page-vip-club-benefits {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-vip-club-benefits__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important; /* body handles --header-offset */
    }

    .page-vip-club-benefits__hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

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

    .page-vip-club-benefits__hero-cta-buttons,
    .page-vip-club-benefits__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px; /* Add padding to container */
    }

    .page-vip-club-benefits__btn-primary,
    .page-vip-club-benefits__btn-secondary {
        width: 100% !important; /* Full width buttons on mobile */
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-vip-club-benefits__section {
        padding: 40px 15px;
    }

    .page-vip-club-benefits__container {
        padding-left: 15px;
        padding-right: 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-vip-club-benefits__section-title {
        font-size: 2rem;
    }

    .page-vip-club-benefits__section-description,
    .page-vip-club-benefits__section-text {
        font-size: 1rem;
    }

    .page-vip-club-benefits__levels-grid,
    .page-vip-club-benefits__privileges-grid,
    .page-vip-club-benefits__steps {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 20px;
    }

    .page-vip-club-benefits__level-image,
    .page-vip-club-benefits__privilege-icon {
        height: auto; /* Allow image height to adjust */
        max-width: 100% !important;
        width: 100% !important;
        display: block !important;
        box-sizing: border-box !important;
    }

    .page-vip-club-benefits__level-title {
        font-size: 1.6rem;
    }

    .page-vip-club-benefits__privilege-title {
        font-size: 1.4rem;
    }

    .page-vip-club-benefits__step-title {
        font-size: 1.3rem;
    }

    .page-vip-club-benefits__faq-question {
        font-size: 1rem;
        padding: 15px;
    }

    .page-vip-club-benefits__faq-answer {
        padding: 0 15px 15px;
        font-size: 0.95rem;
    }

    .page-vip-club-benefits__cta-bottom {
        padding: 60px 15px;
    }

    .page-vip-club-benefits__cta-title {
        font-size: 2rem;
    }

    .page-vip-club-benefits__cta-text {
        font-size: 1rem;
    }

    /* Ensure all images and video containers are responsive */
    .page-vip-club-benefits img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-vip-club-benefits__section,
    .page-vip-club-benefits__card,
    .page-vip-club-benefits__container,
    .page-vip-club-benefits__hero-image-wrapper,
    .page-vip-club-benefits__hero-content,
    .page-vip-club-benefits__levels-grid,
    .page-vip-club-benefits__privileges-grid,
    .page-vip-club-benefits__steps,
    .page-vip-club-benefits__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 480px) {
    .page-vip-club-benefits__hero-title {
        font-size: clamp(1.5rem, 8vw, 2.2rem);
    }
    .page-vip-club-benefits__section-title {
        font-size: 1.8rem;
    }
    .page-vip-club-benefits__cta-title {
        font-size: 1.8rem;
    }
}