.page-vip-club {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: transparent; /* Body background is handled by shared.css */
}

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

/* Hero Section */
.page-vip-club__hero-section {
    position: relative;
    padding: 80px 0;
    padding-top: var(--header-offset, 120px); /* Adjust for fixed header */
    background: linear-gradient(135deg, rgba(1, 116, 57, 0.8), rgba(0, 95, 47, 0.8)); /* Brand color gradient with opacity */
    color: #ffffff;
    text-align: center;
    overflow: hidden;
    z-index: 1; /* Ensure content is above image */
}

.page-vip-club__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffff00; /* Highlighted color for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-vip-club__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

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

.page-vip-club__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Image behind content */
    overflow: hidden;
}

.page-vip-club__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5; /* Blend with background */
    filter: none; /* Explicitly remove any default filters */
}

/* General Sections */
.page-vip-club__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 20px;
    color: #017439; /* Brand color for titles in light sections */
    font-weight: bold;
}

.page-vip-club__dark-bg .page-vip-club__section-title {
    color: #ffffff; /* White for titles in dark sections */
}

.page-vip-club__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    color: #555555; /* Darker grey for descriptions in light sections */
}

.page-vip-club__dark-bg .page-vip-club__section-description {
    color: #f0f0f0; /* Lighter grey for descriptions in dark sections */
}

/* Buttons */
.page-vip-club__btn-primary,
.page-vip-club__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    box-sizing: border-box;
    max-width: 100%;
}

.page-vip-club__btn-primary {
    background: #C30808; /* Red for primary action */
    color: #FFFF00; /* Yellow for text */
    border: 2px solid #C30808;
}

.page-vip-club__btn-primary:hover {
    background: #e02020;
    border-color: #e02020;
    transform: translateY(-2px);
}

.page-vip-club__btn-secondary {
    background: #017439;
    color: #ffffff;
    border: 2px solid #017439;
}

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

/* Benefits Section */
.page-vip-club__benefits-section {
    padding: 80px 0;
    background: #f8f8f8; /* Light background */
    color: #333333; /* Dark text for light background */
}

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

.page-vip-club__benefit-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #333333;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-vip-club__benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-vip-club__benefit-icon {
    width: 150px; /* Ensure images are not too small */
    height: 150px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.page-vip-club__benefit-card p {
    font-size: 1em;
    color: #555555;
}

/* Tiers Section */
.page-vip-club__tiers-section {
    padding: 80px 0;
    background: #017439; /* Brand color background */
    color: #ffffff;
}

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

.page-vip-club__tier-card {
    background: rgba(255, 255, 255, 0.1); /* Slightly transparent white on dark background */
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-vip-club__tier-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
}

.page-vip-club__tier-icon {
    width: 120px;
    height: 120px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 50%; /* Make icons round */
    border: 3px solid #ffff00; /* Gold border */
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.6);
}

.page-vip-club__tier-card .page-vip-club__card-title {
    color: #ffff00; /* Yellow for tier titles */
}

.page-vip-club__tier-card p {
    color: #f0f0f0;
    margin-bottom: 15px;
}

.page-vip-club__tier-card ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    text-align: left;
    width: 100%;
}

.page-vip-club__tier-card ul li {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 15px;
    margin-bottom: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    color: #ffffff;
}

.page-vip-club__tier-card ul li::before {
    content: '✅';
    margin-right: 10px;
    font-size: 0.9em;
}

.page-vip-club__tier-note {
    margin-top: 40px;
    font-size: 1.1em;
    color: #f0f0f0;
}

.page-vip-club__tier-note a {
    color: #ffff00;
    text-decoration: underline;
}

.page-vip-club__tier-note a:hover {
    color: #fff;
}

/* Video Section */
.page-vip-club__video-section {
    padding: 80px 0;
    background: #f0f0f0; /* Light background */
    color: #333333;
}

.page-vip-club__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 900px;
    margin: 40px auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-vip-club__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
    cursor: pointer; /* For JS click handling */
}

.page-vip-club__video-cta {
    text-align: center;
    margin-top: 30px;
}

/* Exclusive Features Section */
.page-vip-club__exclusive-features {
    padding: 80px 0;
    background: #005f2f; /* Darker green background */
    color: #ffffff;
}

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