/* style/vip-program.css */

/* Base styles for the VIP Program page */
.page-vip-program {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for the page, assuming dark body background from shared.css */
    background-color: var(--dark-bg-lighter, #1a1a1a); /* Ensure consistent background, fallback for safety */
}

/* Header offset for desktop */
.page-vip-program__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

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

.page-vip-program__section-title {
    font-size: 2.5em;
    color: #26A9E0; /* Brand color for titles */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-vip-program__section-intro {
    font-size: 1.1em;
    color: #f0f0f0; /* Lighter text for intros on dark background */
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Hero Section */
.page-vip-program__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    background-color: #1a1a1a; /* Darker background for hero */
    color: #ffffff;
    padding-bottom: 40px;
    overflow: hidden;
}

.page-vip-program__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 20px;
}

.page-vip-program__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #26A9E0;
    line-height: 1.2;
}

.page-vip-program__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

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

.page-vip-program__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.page-vip-program__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Overlay effect */
}

/* Buttons */
.page-vip-program__btn-primary,
.page-vip-program__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    max-width: 100%; /* Ensure button doesn't overflow */
}

.page-vip-program__btn-primary {
    background-color: #26A9E0;
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-vip-program__btn-primary:hover {
    background-color: #1a8ccb;
    border-color: #1a8ccb;
}

.page-vip-program__btn-secondary {
    background-color: transparent;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-vip-program__btn-secondary:hover {
    background-color: #26A9E0;
    color: #ffffff;
}

/* Specific color for Login button */
.page-vip-program__hero-cta-buttons .page-vip-program__btn-secondary {
    background-color: #EA7C07; /* Login color */
    color: #ffffff;
    border-color: #EA7C07;
}

.page-vip-program__hero-cta-buttons .page-vip-program__btn-secondary:hover {
    background-color: #cc6a06;
    border-color: #cc6a06;
}

/* Benefits Section */
.page-vip-program__benefits-section {
    background-color: #1a1a1a; /* Dark background */
    padding: 80px 0;
    color: #f0f0f0;
}

.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: rgba(255, 255, 255, 0.05); /* Slightly transparent white on dark */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-vip-program__benefit-icon {
    width: 200px; /* Enforce min size */
    height: auto;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-vip-program__benefit-title {
    font-size: 1.5em;
    color: #26A9E0;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-vip-program__benefit-description {
    font-size: 1em;
    color: #cccccc;
}

/* Tiers Section */
.page-vip-program__tiers-section {
    background-color: #0d0d0d; /* Even darker background */
    padding: 80px 0;
    color: #ffffff;
}

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

.page-vip-program__tier-card {
    background-color: rgba(255, 255, 255, 0.08); /* Slightly more transparent white */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(38, 169, 224, 0.3); /* Subtle brand border */
}

.page-vip-program__tier-image {
    width: 250px; /* Enforce min size */
    height: auto;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-vip-program__tier-title {
    font-size: 1.8em;
    color: #26A9E0;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-vip-program__tier-description {
    font-size: 1em;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.page-vip-program__tier-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    color: #e0e0e0;
}

.page-vip-program__tier-features li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.page-vip-program__tier-features li::before {
    content: '✔';
    color: #26A9E0;
    position: absolute;
    left: 0;
    top: 0;
}

.page-vip-program__how-to-join {
    margin-top: 60px;
    padding: 40px;
    background-color: rgba(38, 169, 224, 0.1); /* Light brand background */
    border-radius: 10px;
    color: #ffffff;
}

.page-vip-program__how-to-join-title {
    font-size: 2em;
    color: #26A9E0;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-vip-program__how-to-join-description {
    font-size: 1.1em;
    color: #f0f0f0;
    text-align: center;
    margin-bottom: 30px;
}

/* Join Section */
.page-vip-program__join-section {
    background-color: #1a1a1a;
    padding: 80px 0;
    color: #ffffff;
}

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

.page-vip-program__step-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-vip-program__step-number {
    font-size: 3em;
    color: #26A9E0;
    font-weight: bold;
    margin-bottom: 15px;
    background-color: rgba(38, 169, 224, 0.1);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-vip-program__step-title {
    font-size: 1.6em;
    color: #26A9E0;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-vip-program__step-description {
    font-size: 1em;
    color: #cccccc;
    margin-bottom: 20px;
    flex-grow: 1; /* Push button to bottom */
}

/* Video Section */
.page-vip-program__video-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 60px auto 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    cursor: pointer; /* Indicate video is clickable */
}

.page-vip-program__video {
    width: 100%;
    height: auto;
    display: block;
}

.page-vip-program__video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none; /* Allow click through to video if not active */
}

.page-vip-program__video-wrapper:hover .page-vip-program__video-overlay {
    opacity: 1;
    pointer-events: auto;
}

.page-vip-program__video-text {
    color: #ffffff;
    font-size: 1.5em;
    margin-bottom: 20px;
    text-align: center;
}

/* FAQ Section */
.page-vip-program__faq-section {
    background-color: #0d0d0d;
    padding: 80px 0;
    color: #ffffff;
}

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