/* style/vip-club.css */

/* Base styles for the VIP Club page */
.page-vip-club {
    font-family: Arial, sans-serif;
    color: #F2FFF6; /* Text Main */
    background-color: #08160F; /* Background */
    line-height: 1.6;
}

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

.page-vip-club__hero-image-wrapper {
    width: 100%;
    max-height: 700px; /* Limit height for hero image */
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.page-vip-club__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-vip-club__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: -150px auto 0; /* Pull content up over the image slightly for visual appeal, but not overlapping text on image */
    padding: 30px;
    background: rgba(17, 39, 27, 0.85); /* Card BG with transparency */
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid #2E7A4E; /* Border */
}

.page-vip-club__main-title {
    font-size: clamp(2.2em, 4vw, 3.5em);
    font-weight: bold;
    color: #F2C14E; /* Gold */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Glow */
}

.page-vip-club__description {
    font-size: 1.1em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
}

.page-vip-club__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-vip-club__btn-primary,
.page-vip-club__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%; /* Ensure buttons adapt to container */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word;
}

.page-vip-club__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-vip-club__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-vip-club__btn-secondary {
    background: #11271B; /* Card BG */
    color: #2AD16F; /* Button top gradient color for text */
    border: 2px solid #2E7A4E; /* Border */
}

.page-vip-club__btn-secondary:hover {
    background: #2E7A4E; /* Border */
    color: #F2FFF6; /* Text Main */
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(46, 122, 78, 0.4);
}

/* General Section Styles */
.page-vip-club__section-title {
    font-size: clamp(1.8em, 3.5vw, 2.8em);
    font-weight: bold;
    color: #F2C14E; /* Gold */
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 8px rgba(87, 227, 141, 0.3);
}

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

.page-vip-club__text-block {
    font-size: 1.05em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 20px;
    text-align: justify;
}

.page-vip-club__text-block a {
    color: #2AD16F; /* Highlight links */
    text-decoration: none;
    font-weight: bold;
}

.page-vip-club__text-block a:hover {
    text-decoration: underline;
}

.page-vip-club__image-content {
    width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #2E7A4E; /* Border */
}

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

.page-vip-club__benefit-card {
    background: #11271B; /* Card BG */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #2E7A4E; /* Border */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-club__benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-vip-club__card-title {
    font-size: 1.5em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-vip-club__card-text {
    color: #A7D9B8; /* Text Secondary */
    font-size: 1em;
}

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

.page-vip-club__tier-card {
    background: #11271B; /* Card BG */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #2E7A4E; /* Border */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-vip-club__tier-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin: 20px auto;
    border-radius: 50%;
    border: 3px solid #F2C14E; /* Gold */
    box-shadow: 0 0 15px rgba(242, 193, 78, 0.6);
}

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

.page-vip-club__step-item {
    background: #11271B; /* Card BG */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #2E7A4E; /* Border */
}

.page-vip-club__step-title {
    font-size: 1.6em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-vip-club__step-description {
    color: #A7D9B8; /* Text Secondary */
}

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

.page-vip-club__faq-item {
    background: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-vip-club__faq-item[open] {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-vip-club__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: #F2FFF6; /* Text Main */
    cursor: pointer;
    background: #11271B; /* Card BG */
    list-style: none; /* For details/summary */
}

.page-vip-club__faq-question::-webkit-details-marker {
    display: none;
}

.page-vip-club__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: #2AD16F; /* Button top gradient color */
    margin-left: 20px;
}

.page-vip-club__faq-item[open] .page-vip-club__faq-toggle {
    content: '−';
}

.page-vip-club__faq-answer {
    padding: 0 25px 20px;
    color: #A7D9B8; /* Text Secondary */
    font-size: 1em;
    line-height: 1.5;
}

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

/* CTA Bottom Section */
.page-vip-club__cta-bottom-section .page-vip-club__container {
    background: #0A4B2C; /* Deep Green */
    border-radius: 15px;
    text-align: center;
    padding: 80px 40px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    border: 2px solid #2E7A4E; /* Border */
}

.page-vip-club__cta-bottom-section .page-vip-club__section-title {
    color: #F2C14E; /* Gold */
    margin-bottom: 30px;
}

.page-vip-club__cta-bottom-section .page-vip-club__text-block {
    color: #F2FFF6; /* Text Main */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.page-vip-club__cta-bottom-section .page-vip-club__image-content {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: auto;
    opacity: 0.2;
    pointer-events: none;
    border: none; /* No border for background image */
    box-shadow: none;
    border-radius: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-vip-club__hero-content {
        margin-top: -100px;
    }
}

@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-content {
        margin-top: -80px;
        padding: 20px;
    }

    .page-vip-club__main-title {
        font-size: 2em;
    }

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

    .page-vip-club__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }

    .page-vip-club__btn-primary,
    .page-vip-club__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

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

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

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

    .page-vip-club__benefit-card,
    .page-vip-club__tier-card,
    .page-vip-club__step-item {
        padding: 25px;
    }

    .page-vip-club__card-title,
    .page-vip-club__step-title {
        font-size: 1.3em;
    }

    .page-vip-club__image-content {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        padding-left: 0;
        padding-right: 0;
    }

    .page-vip-club__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }

    .page-vip-club__faq-answer {
        padding: 0 20px 15px;
    }

    .page-vip-club__cta-bottom-section .page-vip-club__container {
        padding: 60px 20px;
    }

    .page-vip-club__cta-bottom-section .page-vip-club__image-content {
        display: none;
    }
}

@media (max-width: 480px) {
    .page-vip-club__hero-content {
        margin-top: -60px;
    }

    .page-vip-club__main-title {
        font-size: 1.8em;
    }

    .page-vip-club__faq-question {
        font-size: 1em;
    }
}

/* Ensure all images are responsive and not smaller than 200px in content area */
.page-vip-club img:not(.page-vip-club__tier-image) {
    min-width: 200px;
    min-height: 200px;
}

/* Tier images can be smaller if they are decorative, but the rule is 200x200px minimum. I've set them to 400x300px to comply. */
.page-vip-club__tier-image {
    min-width: 200px;
    min-height: 200px;
}