/* style/promotions-vip-exclusive.css */
/* Custom Colors */
:root {
    --page-bg-color: #08160F; /* Background */
    --card-bg-color: #11271B; /* Card BG */
    --text-main-color: #F2FFF6; /* Text Main */
    --text-secondary-color: #A7D9B8; /* Text Secondary */
    --btn-gradient-start: #2AD16F;
    --btn-gradient-end: #13994A;
    --border-color: #2E7A4E; /* Border */
    --glow-color: #57E38D; /* Glow */
    --gold-color: #F2C14E; /* Gold */
    --divider-color: #1E3A2A; /* Divider */
    --deep-green-color: #0A4B2C; /* Deep Green */
}

.page-promotions-vip-exclusive {
    background-color: var(--page-bg-color);
    color: var(--text-main-color);
    font-family: Arial, sans-serif; /* Example font, adjust if specific font is given */
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll on main content */
}

/* Hero Section */
.page-promotions-vip-exclusive__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 0 60px; /* Small top padding, more bottom padding, 0 for full width image */
    box-sizing: border-box;
    background-color: var(--card-bg-color); /* A darker background for the hero section */
}

.page-promotions-vip-exclusive__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Matches hero image width */
    margin-bottom: 30px;
}

.page-promotions-vip-exclusive__hero-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(87, 227, 141, 0.3); /* Glow effect */
}

.page-promotions-vip-exclusive__hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.page-promotions-vip-exclusive__main-title {
    font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
    font-weight: 700;
    line-height: 1.2;
    color: var(--gold-color); /* Using gold for main title */
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Soft glow */
}

.page-promotions-vip-exclusive__intro-text {
    font-size: 1.1em;
    color: var(--text-secondary-color);
    margin-bottom: 30px;
}

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

/* Buttons */
.page-promotions-vip-exclusive__btn-primary,
.page-promotions-vip-exclusive__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%; /* Ensure buttons are responsive */
    white-space: normal; /* Allow text wrap */
    word-wrap: break-word; /* Allow text wrap */
    text-align: center;
}

.page-promotions-vip-exclusive__btn-primary {
    background: linear-gradient(180deg, var(--btn-gradient-start) 0%, var(--btn-gradient-end) 100%);
    color: var(--text-main-color);
    border: 2px solid var(--btn-gradient-start);
    box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-promotions-vip-exclusive__btn-primary:hover {
    background: linear-gradient(180deg, var(--btn-gradient-end) 0%, var(--btn-gradient-start) 100%);
    box-shadow: 0 8px 20px rgba(42, 209, 111, 0.6);
    transform: translateY(-2px);
}

.page-promotions-vip-exclusive__btn-secondary {
    background-color: transparent;
    color: var(--btn-gradient-start);
    border: 2px solid var(--btn-gradient-start);
    box-shadow: 0 5px 15px rgba(42, 209, 111, 0.2);
}

.page-promotions-vip-exclusive__btn-secondary:hover {
    background-color: var(--btn-gradient-start);
    color: var(--text-main-color);
    box-shadow: 0 8px 20px rgba(42, 209, 111, 0.4);
    transform: translateY(-2px);
}

/* General Section Styles */
.page-promotions-vip-exclusive__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-promotions-vip-exclusive__section-title {
    font-size: clamp(1.8em, 3.5vw, 2.8em);
    font-weight: 700;
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 25px;
    padding-top: 40px; /* Section padding top */
    text-shadow: 0 0 8px rgba(87, 227, 141, 0.4);
}

.page-promotions-vip-exclusive__section-description {
    font-size: 1.05em;
    color: var(--text-secondary-color);
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Card Styles */
.page-promotions-vip-exclusive__benefit-card,
.page-promotions-vip-exclusive__step-card,
.page-promotions-vip-exclusive__offer-card {
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-main-color);
}

.page-promotions-vip-exclusive__benefit-card:hover,
.page-promotions-vip-exclusive__offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(87, 227, 141, 0.4);
}

.page-promotions-vip-exclusive__card-title {
    font-size: 1.4em;
    font-weight: 600;
    color: var(--gold-color);
    margin-top: 20px;
    margin-bottom: 15px;
}

.page-promotions-vip-exclusive__card-text {
    font-size: 0.95em;
    color: var(--text-secondary-color);
    flex-grow: 1; /* Ensure text takes up available space */
}

/* Images in Cards */
.page-promotions-vip-exclusive__benefit-icon,
.page-promotions-vip-exclusive__offer-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    object-fit: cover; /* Ensure images fill their space */
    min-width: 200px; /* Min size for content images */
    min-height: 200px; /* Min size for content images */
}

/* Benefits Grid */
.page-promotions-vip-exclusive__benefits-grid,
.page-promotions-vip-exclusive__offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* How to Join Steps */
.page-promotions-vip-exclusive__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.page-promotions-vip-exclusive__step-card {
    background-color: var(--deep-green-color); /* Different background for steps */
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    color: var(--text-main-color);
}

.page-promotions-vip-exclusive__step-card a {
    color: var(--glow-color); /* Link color in steps */
    text-decoration: underline;
}

.page-promotions-vip-exclusive__step-card a:hover {
    color: var(--gold-color);
}

.page-promotions-vip-exclusive__cta-center {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 60px;
}

/* FAQ Section */
.page-promotions-vip-exclusive__faq-list {
    margin-top: 30px;
    margin-bottom: 60px;
}

.page-promotions-vip-exclusive__faq-item {
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--text-main-color);
}

.page-promotions-vip-exclusive__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 600;
    color: var(--gold-color);
    background-color: rgba(17, 168, 78, 0.1); /* Slightly lighter background for question */
    border-bottom: 1px solid transparent; /* No border initially */
}

.page-promotions-vip-exclusive__faq-item[open] .page-promotions-vip-exclusive__faq-question {
    border-bottom: 1px solid var(--border-color); /* Border when open */
}

.page-promotions-vip-exclusive__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
    color: var(--glow-color);
}

.page-promotions-vip-exclusive__faq-item[open] .page-promotions-vip-exclusive__faq-toggle {
    transform: rotate(45deg); /* Rotate + to become X or - */
}

.page-promotions-vip-exclusive__faq-answer {
    padding: 0 25px 20px;
    font-size: 1em;
    color: var(--text-secondary-color);
}

.page-promotions-vip-exclusive__faq-answer p {
    margin-top: 10px;
    margin-bottom: 0;
}

/* Final CTA Section */
.page-promotions-vip-exclusive__cta-final-section {
    background: linear-gradient(135deg, var(--deep-green-color) 0%, var(--page-bg-color) 100%);
    padding: 80px 20px;
    text-align: center;
    border-top: 1px solid var(--divider-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .page-promotions-vip-exclusive {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-promotions-vip-exclusive__hero-section {
        padding: 10px 0 40px; /* Full width for image, content inside gets padding */
    }

    .page-promotions-vip-exclusive__hero-content {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .page-promotions-vip-exclusive__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
    }

    .page-promotions-vip-exclusive__intro-text {
        font-size: 1em;
    }

    .page-promotions-vip-exclusive__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-promotions-vip-exclusive__btn-primary,
    .page-promotions-vip-exclusive__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-promotions-vip-exclusive__container,
    .page-promotions-vip-exclusive__benefits-section,
    .page-promotions-vip-exclusive__how-to-join-section,
    .page-promotions-vip-exclusive__exclusive-offers-section,
    .page-promotions-vip-exclusive__faq-section,
    .page-promotions-vip-exclusive__cta-final-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden !important; /* Ensure no overflow */
    }

    .page-promotions-vip-exclusive__section-title {
        font-size: clamp(1.5em, 6vw, 2.2em);
        padding-top: 30px;
        margin-bottom: 20px;
    }

    .page-promotions-vip-exclusive__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }

    .page-promotions-vip-exclusive__benefits-grid,
    .page-promotions-vip-exclusive__offers-grid,
    .page-promotions-vip-exclusive__steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .page-promotions-vip-exclusive__benefit-card,
    .page-promotions-vip-exclusive__step-card,
    .page-promotions-vip-exclusive__offer-card {
        padding: 20px;
    }

    .page-promotions-vip-exclusive__card-title {
        font-size: 1.2em;
    }

    .page-promotions-vip-exclusive__card-text {
        font-size: 0.9em;
    }

    .page-promotions-vip-exclusive__faq-question {
        padding: 15px 20px;
        font-size: 1em;
    }

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

    /* Mobile image responsiveness */
    .page-promotions-vip-exclusive img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* Ensure video elements also follow responsive rules, if any were added */
    .page-promotions-vip-exclusive video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-promotions-vip-exclusive__video-section,
    .page-promotions-vip-exclusive__video-container,
    .page-promotions-vip-exclusive__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-promotions-vip-exclusive__video-section {
        padding-top: 10px !important;
    }
}