:root {
    --primary-color: #017439; /* Dark Green */
    --secondary-color: #FFFFFF; /* White */
    --text-on-dark: #FFFFFF;
    --text-on-light: #333333;
    --background-dark: #121212; /* Body background from shared.css */
    --card-background-dark: rgba(255, 255, 255, 0.08); /* Slightly transparent white on dark body */
    --register-login-bg: #C30808; /* Red */
    --register-login-text: #FFFF00; /* Yellow */
}

/* Base styles for the page content */
.page-promotions-vip-exclusive {
    background-color: var(--background-dark); /* Ensure consistency with body background */
    color: var(--text-on-dark); /* Light text on dark background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Fixed header spacing */
}

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

.page-promotions-vip-exclusive__section-title {
    font-size: 2.5em;
    color: var(--secondary-color); /* White title */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-promotions-vip-exclusive__section-intro {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-promotions-vip-exclusive__hero-section {
    position: relative;
    width: 100%;
    height: 600px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: var(--text-on-dark);
}

.page-promotions-vip-exclusive__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-promotions-vip-exclusive__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: 2;
}

.page-promotions-vip-exclusive__hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 20px;
}

.page-promotions-vip-exclusive__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    line-height: 1.1;
}

.page-promotions-vip-exclusive__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

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

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

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

.page-promotions-vip-exclusive__btn-primary:hover {
    background-color: #005a2e; /* Manually darkened */
    border-color: #005a2e;
}

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

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

.page-promotions-vip-exclusive__btn-text {
    color: var(--primary-color);
    background-color: transparent;
    padding: 0;
    border: none;
    text-decoration: underline;
    font-size: 1em;
}

.page-promotions-vip-exclusive__btn-text:hover {
    color: var(--secondary-color);
}

/* Dark background sections */
.page-promotions-vip-exclusive__dark-bg {
    background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter on dark body for separation */
    padding: 60px 0;
}

/* Benefits Section */
.page-promotions-vip-exclusive__benefits-section {
    padding: 60px 0;
}

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

.page-promotions-vip-exclusive__benefit-card {
    background-color: var(--card-background-dark);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.page-promotions-vip-exclusive__benefit-card:hover {
    transform: translateY(-5px);
}

.page-promotions-vip-exclusive__benefit-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    min-width: 200px; /* Enforce min image size */
    min-height: 200px; /* Enforce min image size */
}

.page-promotions-vip-exclusive__benefit-title {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-vip-exclusive__benefit-description {
    font-size: 1em;
    color: rgba(255, 255, 255, 0.8);
}

/* Tiers Section */
.page-promotions-vip-exclusive__tiers-section {
    padding: 60px 0;
}

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

.page-promotions-vip-exclusive__tier-card {
    background-color: var(--card-background-dark);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.page-promotions-vip-exclusive__tier-card:hover {
    transform: translateY(-5px);
}

.page-promotions-vip-exclusive__tier-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
    border: 5px solid var(--primary-color);
    min-width: 200px; /* Enforce min image size */
    min-height: 200px; /* Enforce min image size */
}

.page-promotions-vip-exclusive__tier-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions-vip-exclusive__tier-description {
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.7);
}

.page-promotions-vip-exclusive__cta-center {
    text-align: center;
}

/* How to Join Section */
.page-promotions-vip-exclusive__how-to-join-section {
    padding: 60px 0;
}

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

.page-promotions-vip-exclusive__step-card {
    background-color: var(--card-background-dark);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-promotions-vip-exclusive__step-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    min-width: 200px; /* Enforce min image size */
    min-height: 200px; /* Enforce min image size */
}

.page-promotions-vip-exclusive__step-title {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-vip-exclusive__step-description {
    font-size: 1em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

/* Exclusive Offers Section */
.page-promotions-vip-exclusive__exclusive-offers-section {
    padding: 60px 0;
}