/* style/vip-program.css */

/* Variables for consistent styling */
:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #000080; /* Dark Blue */
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-dark: #1a1a2e;
    --card-bg-dark: rgba(255, 255, 255, 0.08); /* Slightly transparent white on dark bg */
    --border-color-dark: rgba(255, 255, 255, 0.15);
    --button-hover-primary: #e6c200; /* Slightly darker gold */
    --button-hover-secondary: #000066; /* Slightly darker dark blue */
}

/* Base styles for the page content, considering the dark body background */
.page-vip-program {
    font-family: 'Arial', sans-serif;
    color: var(--text-light); /* Main text color for dark body bg */
    line-height: 1.7;
    background-color: var(--bg-dark); /* Ensure consistency if body background is overridden */
    min-height: 100vh;
}

/* Container for consistent content width */
.page-vip-program__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Section padding and spacing */
.page-vip-program__hero-section,
.page-vip-program__intro-section,
.page-vip-program__tiers-section,
.page-vip-program__benefits-section,
.page-vip-program__join-section,
.page-vip-program__faq-section,
.page-vip-program__why-new88-section,
.page-vip-program__cta-final-section {
    padding: 80px 0;
    position: relative;
    z-index: 1; /* Ensure content is above any potential background layers */
}

/* Fixed header padding for the first section */
.page-vip-program__hero-section {
    padding-top: 120px; /* Adjust based on shared header height */
    background: linear-gradient(135deg, var(--secondary-color) 0%, #3a3a5a 100%);
    text-align: center;
    overflow: hidden; /* Prevent content overflow */
}

/* Titles */
.page-vip-program__main-title {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-vip-program__section-title {
    font-size: 38px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-vip-program__hero-description,
.page-vip-program__section-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-vip-program__section-description--note {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 40px;
    font-style: italic;
}

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

.page-vip-program__cta-button {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Ensure long words break */
    max-width: 100%; /* Ensure button doesn't exceed container */
    box-sizing: border-box;
}

.page-vip-program__cta-button--primary {
    background-color: var(--primary-color);
    color: var(--text-dark); /* Gold background needs dark text for contrast */
    border: 2px solid var(--primary-color);
}

.page-vip-program__cta-button--primary:hover {
    background-color: var(--button-hover-primary);
    border-color: var(--button-hover-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-vip-program__cta-button--secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-vip-program__cta-button--secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-vip-program__cta-button--small {
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
}


/* Intro Section */
.page-vip-program__intro-section {
    background-color: #2a2a4a; /* Slightly lighter dark background */
}

.page-vip-program__content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.page-vip-program__image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    object-fit: cover;
}

.page-vip-program__text-block {
    flex: 1;
    min-width: 300px;
}

.page-vip-program__text-block p {
    margin-bottom: 15px;
    color: var(--text-light);
}

/* VIP Tiers Section */
.page-vip-program__tiers-section {
    background-color: var(--bg-dark);
}

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

.page-vip-program__tier-card {
    background-color: var(--card-bg-dark);
    border: 1px solid var(--border-color-dark);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-vip-program__tier-icon {
    width: 150px; /* Display size, source image will be >=200px */
    height: 150px; /* Display size, source image will be >=200px */
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.7)); /* Visual effect, not color change */
}

.page-vip-program__tier-title {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-vip-program__tier-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.page-vip-program__tier-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    color: var(--text-light);
}

.page-vip-program__tier-benefits li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
}

.page-vip-program__tier-benefits li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Benefits Section */
.page-vip-program__benefits-section {
    background-color: #2a2a4a;
}

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

.page-vip-program__benefit-card {
    background-color: var(--card-bg-dark);
    border: 1px solid var(--border-color-dark);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-vip-program__benefit-icon {
    width: 150px; /* Display size, source image will be >=200px */
    height: 150px; /* Display size, source image will be >=200px */
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.5));
}

.page-vip-program__benefit-title {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-vip-program__benefit-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

/* How to Join Section */
.page-vip-program__join-section {
    background-color: var(--bg-dark);
}

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