/* style/vip-program.css */

/* Base styles for the page content, ensuring contrast with dark body background */
.page-vip-program {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Light text for dark body background */
    background-color: transparent; /* Main content background will be transparent, inheriting body's #0a0a0a */
}

/* Sections padding and max-width for overall layout */
.page-vip-program__hero-section,
.page-vip-program__introduction-section,
.page-vip-program__benefits-section,
.page-vip-program__tiers-section,
.page-vip-program__video-section,
.page-vip-program__how-to-join-section,
.page-vip-program__faq-section,
.page-vip-program__cta-section {
    padding: 60px 20px;
    position: relative;
    overflow: hidden; /* Prevent content overflow */
}

/* Ensure first section after header respects fixed header offset */
.page-vip-program__hero-section {
    padding-top: var(--header-offset, 120px);
    background: linear-gradient(135deg, #0a0a0a 0%, #017439 100%); /* Blend with brand color */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap; /* For responsiveness */
    gap: 40px;
}

.page-vip-program__container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

/* Titles and Headings */
.page-vip-program__hero-title {
    font-size: 3.5em;
    font-weight: bold;
    color: #FFFF00; /* Highlighted color for main title */
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.2;
}

.page-vip-program__hero-description {
    font-size: 1.2em;
    color: #f0f0f0;
    text-align: center;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-vip-program__section-title {
    font-size: 2.5em;
    color: #FFFF00; /* Highlighted color for section titles */
    text-align: center;
    margin-bottom: 25px;
    font-weight: bold;
    line-height: 1.3;
}

.page-vip-program__section-description {
    font-size: 1.1em;
    color: #f0f0f0;
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-vip-program__benefit-title,
.page-vip-program__tier-title,
.page-vip-program__step-title {
    font-size: 1.8em;
    color: #017439; /* Brand color for sub-titles */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-vip-program__text-block {
    font-size: 1em;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: justify;
}

/* 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, transform 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
}

.page-vip-program__btn-primary {
    background-color: #C30808; /* Register/Login color */
    color: #FFFF00; /* Register/Login font color */
    border-color: #C30808;
    margin: 0 auto;
    display: block; /* Center primary button in hero */
}

.page-vip-program__btn-primary:hover {
    background-color: #a30606;
    transform: translateY(-2px);
}

.page-vip-program__btn-secondary {
    background-color: #017439; /* Brand primary color for secondary */
    color: #ffffff;
    border-color: #017439;
}

.page-vip-program__btn-secondary:hover {
    background-color: #005a2e;
    transform: translateY(-2px);
}

.page-vip-program__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap; /* For responsiveness */
}

/* Images */
.page-vip-program__hero-image-wrapper {
    flex: 1 1 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-vip-program__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-vip-program__image-content {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-vip-program__image-full-width {
    width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Introduction Section */
.page-vip-program__introduction-section {
    background-color: #1a1a1a; /* Slightly lighter dark background for contrast */
}

.page-vip-program__content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

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

.page-vip-program__benefit-card:hover {
    transform: translateY(-5px);
    background-color: #017439; /* Brand color on hover */
}

.page-vip-program__benefit-card .page-vip-program__benefit-title {
    color: #FFFF00; /* Highlighted text for benefit titles */
}

.page-vip-program__benefit-card:hover .page-vip-program__benefit-title {
    color: #ffffff; /* White text on brand color hover */
}

.page-vip-program__benefit-text {
    color: #e0e0e0;
}

/* Tiers Section */
.page-vip-program__tiers-section {
    background-color: #1a1a1a;
}

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

.page-vip-program__tier-card {
    background-color: #0a0a0a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    border: 2px solid #017439; /* Border with brand color */
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.page-vip-program__tier-card:hover {
    transform: translateY(-5px);
    border-color: #FFFF00; /* Highlight on hover */
}

.page-vip-program__tier-card .page-vip-program__tier-title {
    color: #FFFF00; /* Highlighted text for tier titles */
    margin-top: 0;
}

.page-vip-program__tier-level {
    font-size: 1.1em;
    color: #f0f0f0;
    margin-bottom: 20px;
}

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

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

.page-vip-program__tier-benefits-list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #017439; /* Brand color for checkmark */
}

.page-vip-program__tier-requirement {
    font-weight: bold;
    color: #FFFF00;
    margin-top: 20px;
    font-size: 0.95em;
}

/* Video Section */
.page-vip-program__video-section {
    background-color: #0a0a0a;
    text-align: center;
}

.page-vip-program__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}}