/* style/promotions-vip-program.css */

:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --card-bg: #11271B;
    --background-dark: #08160F;
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green: #0A4B2C;
}

/* Body background is handled by shared.css, assuming it's dark for text contrast */
.page-promotions-vip-program {
    font-family: 'Arial', sans-serif;
    color: var(--text-main); /* Default light text color for overall page content */
    background-color: var(--background-dark); /* Ensure main content area also has a consistent dark background */
}

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

.page-promotions-vip-program__section-title {
    font-size: clamp(28px, 4vw, 48px);
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.page-promotions-vip-program__text-subtitle {
    font-size: clamp(22px, 3vw, 32px);
    color: var(--text-main);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-promotions-vip-program__text-block {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.page-promotions-vip-program__text-block a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-promotions-vip-program__card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    color: var(--text-main);
}

.page-promotions-vip-program__btn-primary,
.page-promotions-vip-program__btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-promotions-vip-program__btn-primary {
    background: var(--button-gradient);
    color: #ffffff;
    border: none;
}

.page-promotions-vip-program__btn-primary:hover {
    box-shadow: 0 0 15px var(--glow-color);
    transform: translateY(-2px);
}

.page-promotions-vip-program__btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.page-promotions-vip-program__btn-secondary:hover {
    background: rgba(34, 199, 104, 0.1);
    color: #ffffff;
    border-color: #ffffff;
}

/* Hero Section */
.page-promotions-vip-program__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0 60px 0; /* Minimal top padding, body handles header offset */
    background-color: var(--background-dark);
    overflow: hidden;
}

.page-promotions-vip-program__hero-image-wrapper {
    width: 100%;
    max-height: 700px; /* Limit height for aesthetic */
    overflow: hidden;
}

.page-promotions-vip-program__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

.page-promotions-vip-program__hero-content {
    max-width: 900px;
    padding: 40px 20px;
    text-align: center;
    z-index: 1;
    margin-top: -80px; /* Overlap slightly with image for visual flow, but not text ON image */
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
}

.page-promotions-vip-program__main-title {
    font-size: clamp(32px, 5vw, 56px);
    color: var(--gold-color);
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 1px;
}

.page-promotions-vip-program__hero-description {
    font-size: 1.2em;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-vip-program__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* Introduction Section */
.page-promotions-vip-program__introduction-section {
    padding: 80px 0;
    text-align: center;
}

.page-promotions-vip-program__dark-section {
    background-color: var(--deep-green);
    color: var(--text-main);
}

/* Levels Section */
.page-promotions-vip-program__levels-section {
    padding: 80px 0;
    background-color: var(--background-dark);
}

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

.page-promotions-vip-program__level-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
}

.page-promotions-vip-program__level-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
}

.page-promotions-vip-program__level-title {
    font-size: 1.8em;
    color: var(--gold-color);
    margin-bottom: 15px;
}

.page-promotions-vip-program__level-description {
    font-size: 1em;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.page-promotions-vip-program__level-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
    max-width: 200px;
}

.page-promotions-vip-program__level-benefits li {
    font-size: 0.95em;
    color: var(--text-main);
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

.page-promotions-vip-program__level-benefits li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* Benefits Section */
.page-promotions-vip-program__benefits-section {
    padding: 80px 0;
    text-align: center;
}

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

.page-promotions-vip-program__benefit-card {
    text-align: left;
}

.page-promotions-vip-program__benefit-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency, object-fit will crop */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.page-promotions-vip-program__benefit-title {
    font-size: 1.6em;
    color: var(--gold-color);
    margin-bottom: 10px;
}

.page-promotions-vip-program__benefit-description {
    font-size: 1em;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Join Section */
.page-promotions-vip-program__join-section {
    padding: 80px 0;
    background-color: var(--background-dark);
}

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

.page-promotions-vip-program__step-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-promotions-vip-program__step-title {
    font-size: 1.5em;
    color: var(--gold-color);
    margin-bottom: 15px;
}

.page-promotions-vip-program__step-description {
    font-size: 1em;
    color: var(--text-secondary);
    line-height: 1.6;
}

.page-promotions-vip-program__terms-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    color: var(--text-secondary);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-vip-program__terms-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.page-promotions-vip-program__terms-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2em;
    line-height: 1;
}

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

/* FAQ Section */
.page-promotions-vip-program__faq-section {
    padding: 80px 0;
}

.page-promotions-vip-program__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-promotions-vip-program__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    background-color: var(--deep-green); /* Slightly different background for questions */
    border-bottom: 1px solid var(--border-color);
}

.page-promotions-vip-program__faq-question:hover {
    background-color: var(--primary-color);
}

.page-promotions-vip-program__faq-qtext {
    flex-grow: 1;
}

.page-promotions-vip-program__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

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

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

.page-promotions-vip-program__faq-answer p {
    margin-bottom: 0; /* Remove default paragraph margin */
}

/* CTA Section */
.page-promotions-vip-program__cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--background-dark);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions-vip-program__hero-content {
        margin-top: -60px;
        padding: 30px 20px;
    }

    .page-promotions-vip-program__main-title {
        font-size: clamp(30px, 4.5vw, 48px);
    }

    .page-promotions-vip-program__hero-description {
        font-size: 1.1em;
    }

    .page-promotions-vip-program__level-grid,
    .page-promotions-vip-program__benefits-grid,
    .page-promotions-vip-program__steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .page-promotions-vip-program__benefit-image {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .page-promotions-vip-program__hero-section {
        padding-bottom: 40px;
    }

    .page-promotions-vip-program__hero-content {
        margin-top: -40px;
        padding: 20px 15px;
    }

    .page-promotions-vip-program__main-title {
        font-size: clamp(28px, 6vw, 40px);
        margin-bottom: 15px;
    }

    .page-promotions-vip-program__hero-description {
        font-size: 1em;
        margin-bottom: 25px;
    }

    .page-promotions-vip-program__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .page-promotions-vip-program__btn-primary,
    .page-promotions-vip-program__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px !important;
    }

    .page-promotions-vip-program__section-title {
        font-size: clamp(24px, 5vw, 36px);
        margin-bottom: 30px;
    }

    .page-promotions-vip-program__text-subtitle {
        font-size: clamp(20px, 4vw, 28px);
    }

    .page-promotions-vip-program__text-block {
        font-size: 0.95em;
    }

    .page-promotions-vip-program__level-grid,
    .page-promotions-vip-program__benefits-grid,
    .page-promotions-vip-program__steps-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .page-promotions-vip-program__benefit-image {
        height: 160px;
    }

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

    .page-promotions-vip-program__faq-answer {
        padding: 15px 20px;
        font-size: 0.95em;
    }

    /* Mobile specific overrides for image/video/button containers */
    .page-promotions-vip-program img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-promotions-vip-program__section,
    .page-promotions-vip-program__card,
    .page-promotions-vip-program__container,
    .page-promotions-vip-program__level-card,
    .page-promotions-vip-program__benefit-card,
    .page-promotions-vip-program__step-card,
    .page-promotions-vip-program__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-promotions-vip-program__hero-image-wrapper {
        padding-left: 0;
        padding-right: 0;
    }
    
    .page-promotions-vip-program__hero-content {
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-promotions-vip-program__cta-buttons {
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }

    .page-promotions-vip-program__cta-center {
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-promotions-vip-program__faq-list {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Ensure sections have some padding for mobile */
    .page-promotions-vip-program__introduction-section,
    .page-promotions-vip-program__levels-section,
    .page-promotions-vip-program__benefits-section,
    .page-promotions-vip-program__join-section,
    .page-promotions-vip-program__faq-section,
    .page-promotions-vip-program__cta-section {
        padding: 40px 0;
    }

    .page-promotions-vip-program__hero-section {
        padding-top: 10px !important;
    }
}