.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 (#0a0a0a) */
}

.page-vip-club__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-vip-club__section-title {
    font-size: 2.5em;
    color: #26A9E0; /* Brand color for titles */
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-vip-club__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #f0f0f0;
}

/* Hero Section */
.page-vip-club__hero-section {
    position: relative;
    width: 100%;
    height: 70vh; /* Adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    box-sizing: border-box;
}

.page-vip-club__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.6); /* Darken image for text readability */
}

.page-vip-club__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Additional overlay for text readability */
    z-index: -1;
}

.page-vip-club__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 20px;
    color: #ffffff;
}

.page-vip-club__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.7);
    line-height: 1.1;
}

.page-vip-club__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #f0f0f0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

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

/* Buttons */
.page-vip-club__btn-primary,
.page-vip-club__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, transform 0.2s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-vip-club__btn-primary {
    background-color: #26A9E0; /* Main brand color */
    color: #ffffff;
    border: 2px solid #26A9E0;
}

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

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

.page-vip-club__btn-secondary:hover {
    background-color: #26A9E0;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Specific login button color if used */
.page-vip-club__hero-actions .page-vip-club__btn-secondary {
    background-color: #EA7C07; /* Login specific color */
    color: #ffffff;
    border-color: #EA7C07;
}

.page-vip-club__hero-actions .page-vip-club__btn-secondary:hover {
    background-color: #d16b06;
    border-color: #d16b06;
    color: #ffffff;
}

/* Intro Section */
.page-vip-club__intro-section {
    padding: 60px 0;
    background-color: #0a0a0a; /* Ensure dark background for light text */
    color: #ffffff;
}

.page-vip-club__video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 40px auto;
    background-color: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
}

.page-vip-club__video {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
    cursor: pointer;
}

.page-vip-club__video-caption {
    text-align: center;
    margin-top: 15px;
    font-style: italic;
    color: #ccc;
    font-size: 0.9em;
}

/* Tiers Section */
.page-vip-club__tiers-section {
    padding: 80px 0;
    background-color: #1a1a1a; /* Slightly lighter dark background for contrast */
    color: #ffffff;
}

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

.page-vip-club__tier-card {
    background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white on dark */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(38, 169, 224, 0.3);
}

.page-vip-club__tier-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(38, 169, 224, 0.3);
}

.page-vip-club__tier-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #26A9E0;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-vip-club__tier-title {
    font-size: 1.8em;
    color: #26A9E0;
    margin-bottom: 15px;
}

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

/* Privileges Section */
.page-vip-club__privileges-section {
    padding: 80px 0;
    background-color: #0a0a0a; /* Back to main dark background */
    color: #ffffff;
}

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

.page-vip-club__privilege-card {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 1px solid rgba(38, 169, 224, 0.3);
}

.page-vip-club__privilege-card:hover {
    transform: translateY(-5px);
    background-color: rgba(38, 169, 224, 0.1);
}

.page-vip-club__privilege-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #26A9E0); /* Subtle glow, not color change */
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-vip-club__privilege-title {
    font-size: 1.5em;
    color: #26A9E0;
    margin-bottom: 10px;
}

.page-vip-club__privilege-text {
    font-size: 0.95em;
    color: #cccccc;
}

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

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

.page-vip-club__step-card {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(38, 169, 224, 0.3);
}

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

.page-vip-club__step-text {
    font-size: 1em;
    color: #cccccc;
}

.page-vip-club__step-text a {
    color: #26A9E0;
    text-decoration: none;
    font-weight: bold;
}

.page-vip-club__step-text a:hover {
    text-decoration: underline;
}

.page-vip-club__join-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 50px auto 0;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    border: 2px solid #26A9E0;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

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

.page-vip-club__faq-list {
    max-width: 900px;
    margin: 50px auto 0;
}

.page-vip-club__faq-item {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(38, 169, 224, 0.2);
}

.page-vip-club__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: rgba(38, 169, 224, 0.15); /* Slightly darker brand color for question */
    transition: background-color 0.3s ease;
}

.page-vip-club__faq-question:hover {
    background-color: rgba(38, 169, 224, 0.25);
}

.page-vip-club__faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: #26A9E0;
}

.page-vip-club__faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.page-vip-club__faq-item.active .page-vip-club__faq-toggle {
    transform: rotate(45deg);
}

.page-vip-club__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: rgba(255, 255, 255, 0.05);
}

.page-vip-club__faq-item.active .page-vip-club__faq-answer {
    max-height: 1000px !important; /* Ensure it expands fully */
    padding: 20px 25px;
}

.page-vip-club__faq-answer p {
    margin: 0;
    color: #cccccc;
    font-size: 0.95em;
}

/* CTA Section */
.page-vip-club__cta-section {
    padding: 80px 0;
    background-color: #26A9E0; /* Brand color as background */
    color: #ffffff;
    text-align: center;
}

.page-vip-club__cta-section .page-vip-club__section-title {
    color: #ffffff;
}

.page-vip-club__cta-section .page-vip-club__section-description {
    color: #f0f0f0;
    margin-bottom: 40px;
}

.page-vip-club__cta-section .page-vip-club__section-description a {
    color: #ffffff;
    font-weight: bold;
    text-decoration: underline;
}

.page-vip-club__cta-section .page-vip-club__section-description a:hover {
    text-decoration: none;
}

.page-vip-club__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-vip-club__cta-buttons .page-vip-club__btn-primary {
    background-color: #ffffff;
    color: #26A9E0;
    border-color: #ffffff;
}

.page-vip-club__cta-buttons .page-vip-club__btn-primary:hover {
    background-color: #e0e0e0;
    color: #1a8cc4;
}

.page-vip-club__cta-buttons .page-vip-club__btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-vip-club__hero-title {
        font-size: 3em;
    }
    .page-vip-club__hero-description {
        font-size: 1.2em;
    }
    .page-vip-club__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-vip-club__hero-section {
        height: 60vh;
        padding-top: var(--header-offset, 120px) !important; /* Ensure mobile offset */
    }
    .page-vip-club__hero-title {
        font-size: 2.2em;
    }
    .page-vip-club__hero-description {
        font-size: 1em;
    }
    .page-vip-club__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-vip-club__btn-primary,
    .page-vip-club__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        white-space: normal !important;
        word-wrap: break-word !important;
        box-sizing: border-box !important;
    }

    .page-vip-club__container {
        padding: 0 15px;
    }

    .page-vip-club__section-title {
        font-size: 1.8em;
    }
    .page-vip-club__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }

    .page-vip-club__tiers-grid,
    .page-vip-club__privileges-grid,
    .page-vip-club__steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-vip-club img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        min-width: 200px !important; /* Enforce min size */
        min-height: 200px !important; /* Enforce min size */
    }

    .page-vip-club__video,
    .page-vip-club__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-vip-club__video-wrapper {
        padding-left: 0;
        padding-right: 0;
    }

    .page-vip-club__faq-question {
        padding: 15px 20px;
    }
    .page-vip-club__faq-question h3 {
        font-size: 1.1em;
    }
    .page-vip-club__faq-answer {
        padding: 0 20px;
    }
    .page-vip-club__faq-item.active .page-vip-club__faq-answer {
        padding: 15px 20px;
    }

    .page-vip-club__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px; /* Add padding to button container */
    }
}

/* Ensure all content images meet minimum size requirements */
.page-vip-club__tier-image,
.page-vip-club__privilege-icon,
.page-vip-club__join-image {
    min-width: 200px;
    min-height: 200px;
    object-fit: cover; /* or contain, depending on desired effect */
}

/* Contrast Fixes */
.page-vip-club__dark-bg {
  color: #ffffff; /* Deep dark background, so light text */
}

.page-vip-club__light-bg {
  color: #333333; /* For any potential light background */
  background: #ffffff;
}

.page-vip-club p,
.page-vip-club li {
  color: #f0f0f0; /* Slightly off-white for body text on dark background */
}

.page-vip-club__card,
.page-vip-club__tier-card,
.page-vip-club__privilege-card,
.page-vip-club__step-card,
.page-vip-club__faq-item {
  background: rgba(255, 255, 255, 0.08); /* Semi-transparent white on dark */
  color: #ffffff;
}

.page-vip-club__faq-question h3 {
  color: #26A9E0; /* Brand color for question titles */
}

.page-vip-club__faq-answer p {
  color: #cccccc; /* Slightly subdued white for answer text */
}

.page-vip-club a {
  color: #26A9E0;
  text-decoration: none;
}
.page-vip-club a:hover {
  text-decoration: underline;
}