.page-vip-club {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: #1a1a1a; /* Inherited from body, but explicitly set for sections that might not have background */
}

.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: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-vip-club__text-block {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px auto;
    color: #f0f0f0;
}

.page-vip-club__highlight {
    color: #FFFF00; /* For highlighting keywords */
    font-weight: bold;
}

.page-vip-club__keyword {
    font-style: italic;
    color: #FFFF00; /* For composed keywords */
}

/* Hero Section */
.page-vip-club__hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    text-align: center;
    padding-top: var(--header-offset, 120px); /* Ensure header offset is applied */
}

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

.page-vip-club__hero-section > .page-vip-club__container {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

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

.page-vip-club__hero-description {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

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

/* 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, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box; /* Ensure padding doesn't make button exceed width */
    text-align: center;
}

.page-vip-club__btn-primary {
    background-color: #C30808; /* Custom color for register/login */
    color: #FFFF00; /* Custom font color for register/login */
    border: 2px solid #C30808;
}

.page-vip-club__btn-primary:hover {
    background-color: #a30606;
    border-color: #a30606;
    color: #ffffff;
}

.page-vip-club__btn-secondary {
    background-color: transparent;
    color: #017439; /* Main brand color */
    border: 2px solid #017439;
}

.page-vip-club__btn-secondary:hover {
    background-color: #017439;
    color: #ffffff;
}

/* Intro Section */
.page-vip-club__intro-section {
    padding: 80px 0;
    background-color: #ffffff; /* Light background for intro */
    color: #333333; /* Dark text for light background */
}

.page-vip-club__intro-section .page-vip-club__section-title,
.page-vip-club__intro-section .page-vip-club__text-block,
.page-vip-club__intro-section .page-vip-club__grid-title,
.page-vip-club__intro-section p {
    color: #333333;
}

.page-vip-club__intro-section .page-vip-club__highlight,
.page-vip-club__intro-section .page-vip-club__keyword {
    color: #017439; /* Brand color on light background */
}

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

.page-vip-club__grid-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-vip-club__grid-item .page-vip-club__image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-vip-club__grid-title {
    font-size: 1.8em;
    margin-bottom: 15px;
    font-weight: bold;
}

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

.page-vip-club__tiers-section .page-vip-club__section-title,
.page-vip-club__tiers-section .page-vip-club__text-block,
.page-vip-club__tiers-section .page-vip-club__card-title,
.page-vip-club__tiers-section .page-vip-club__card-description,
.page-vip-club__tiers-section .page-vip-club__card-list li {
    color: #ffffff;
}

.page-vip-club__tiers-section .page-vip-club__highlight,
.page-vip-club__tiers-section .page-vip-club__keyword {
    color: #FFFF00; /* Highlight on dark background */
}

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

.page-vip-club__card {
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white card */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-vip-club__card-title {
    font-size: 2em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #FFFF00; /* Gold text for card titles */
}

.page-vip-club__card-description {
    font-size: 1em;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-vip-club__card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
}

.page-vip-club__card-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 0.95em;
}

.page-vip-club__card-list li::before {
    content: '✅'; /* Checkmark for list items */
    position: absolute;
    left: 0;
    color: #FFFF00;
}

.page-vip-club__card-image {
    width: 100%;
    height: 150px; /* Fixed height for card images */
    object-fit: cover;
    border-radius: 8px;
    margin-top: 20px;
}

/* Benefits Details Section */
.page-vip-club__benefits-details {
    padding: 80px 0;
    background-color: #ffffff;
    color: #333333;
}

.page-vip-club__benefits-details .page-vip-club__section-title,
.page-vip-club__benefits-details .page-vip-club__text-block,
.page-vip-club__benefits-details .page-vip-club__column-title,
.page-vip-club__benefits-details p,
.page-vip-club__benefits-details li {
    color: #333333;
}

.page-vip-club__benefits-details .page-vip-club__highlight,
.page-vip-club__benefits-details .page-vip-club__keyword {
    color: #017439;
}

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

.page-vip-club__column-title {
    font-size: 2em;
    margin-bottom: 20px;
    color: #017439;
    font-weight: bold;
    text-align: center;
}

.page-vip-club__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-vip-club__list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 1.1em;
}

.page-vip-club__list li::before {
    content: '✨'; /* Sparkle emoji for list items */
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2em;
    line-height: 1;
}

/* Video Section */
.page-vip-club__video-section {
    padding: 80px 0;
    background-color: #1a1a1a; /* Dark background */
    color: #ffffff;
    text-align: center;
}

.page-vip-club__video-section .page-vip-club__section-title,
.page-vip-club__video-section .page-vip-club__text-block,
.page-vip-club__video-section p {
    color: #ffffff;
}

.page-vip-club__video-section .page-vip-club__highlight,
.page-vip-club__video-section .page-vip-club__keyword {
    color: #FFFF00;
}

.page-vip-club__video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px; /* Max width for video */
    margin: 40px auto;
    background-color: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

/* Aspect ratio box for responsive video */
.page-vip-club__video-wrapper::before {
    content: '';
    display: block;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.page-vip-club__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    cursor: pointer;
}

.page-vip-club__video-link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10; /* Make sure the overlay is clickable */
    display: block;
}

.page-vip-club__video-link-overlay:hover {
    opacity: 0.9;
}

.page-vip-club__cta-area {
    margin-top: 30px;
}

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

.page-vip-club__faq-section .page-vip-club__section-title,
.page-vip-club__faq-section .page-vip-club__text-block,
.page-vip-club__faq-section p {
    color: #333333;
}

.page-vip-club__faq-section .page-vip-club__highlight,
.page-vip-club__faq-section .page-vip-club__keyword {
    color: #017439;
}

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

.page-vip-club__faq-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.page-vip-club__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    background-color: #eee;
    color: #333333;
    transition: background-color 0.3s ease;
    list-style: none; /* For <details> summary */
}

.page-vip-club__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker for <details> summary */
}

.page-vip-club__faq-question:hover {
    background-color: #e0e0e0;
}

.page-vip-club__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: #017439;
}

.page-vip-club__faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 1em;
    color: #555555;
}

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

.page-vip-club__cta-section .page-vip-club__section-title,
.page-vip-club__cta-section .page-vip-club__text-block,
.page-vip-club__cta-section p {
    color: #ffffff;
}

.page-vip-club__cta-section .page-vip-club__highlight,
.page-vip-club__cta-section .page-vip-club__keyword {
    color: #FFFF00;
}

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

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

@media (max-width: 768px) {
    .page-vip-club__hero-section {
        padding: 80px 0;
        min-height: 450px;
        padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
    }
    .page-vip-club__hero-title {
        font-size: 2.5em;
    }
    .page-vip-club__hero-description {
        font-size: 1.1em;
    }

    .page-vip-club__section-title {
        font-size: 1.8em;
    }
    .page-vip-club__text-block {
        font-size: 1em;
    }

    .page-vip-club__intro-section,
    .page-vip-club__tiers-section,
    .page-vip-club__benefits-details,
    .page-vip-club__video-section,
    .page-vip-club__faq-section,
    .page-vip-club__cta-section {
        padding: 50px 0;
    }

    .page-vip-club__grid-item,
    .page-vip-club__card {
        padding: 20px;
    }

    .page-vip-club__grid-title {
        font-size: 1.5em;
    }
    .page-vip-club__card-title {
        font-size: 1.6em;
    }
    .page-vip-club__column-title {
        font-size: 1.6em;
    }

    .page-vip-club__btn-primary,
    .page-vip-club__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-vip-club__hero-cta,
    .page-vip-club__cta-buttons {
        flex-direction: column;
        gap: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px; /* Add padding to container of buttons */
    }

    /* Images responsiveness */
    .page-vip-club img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-vip-club__container,
    .page-vip-club__content-grid,
    .page-vip-club__tier-cards,
    .page-vip-club__grid-columns,
    .page-vip-club__video-wrapper,
    .page-vip-club__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden !important; /* Prevent horizontal scroll */
    }

    /* Video responsiveness */
    .page-vip-club video,
    .page-vip-club__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-vip-club__video-section,
    .page-vip-club__video-container,
    .page-vip-club__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
}