.page-vip-club {
    color: #ffffff; /* Light text for dark body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensure content clears fixed header */
}

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

/* Hero Section */
.page-vip-club__hero-section {
    position: relative;
    background-color: #343a40; /* Dark background for the section itself */
    overflow: hidden; /* Ensure image doesn't overflow */
}

.page-vip-club__hero-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    min-height: 600px; /* Minimum height for hero section */
}

.page-vip-club__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.3; /* Subtle overlay for text readability */
}

.page-vip-club__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-width: 200px; /* Enforce minimum image size */
    min-height: 200px;
}

.page-vip-club__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.page-vip-club__hero-title {
    font-size: 3.5em;
    color: #ffc107; /* Accent color for main title */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

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

.page-vip-club__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    min-width: 180px; /* Ensure buttons are not too small */
    text-align: center;
    font-size: 1.1em;
}

.page-vip-club__button--primary {
    background-color: #ffc107; /* Accent color */
    color: #000000; /* Dark text for accent button */
}

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

.page-vip-club__button--secondary {
    background-color: #007bff; /* Main color */
    color: #ffffff;
    border: 1px solid #007bff;
}

.page-vip-club__button--secondary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
}

/* General Section Styling */
.page-vip-club__overview-section,
.page-vip-club__tiers-section,
.page-vip-club__details-section,
.page-vip-club__how-to-join-section,
.page-vip-club__why-choose-section,
.page-vip-club__faq-section,
.page-vip-club__cta-final-section {
    padding: 80px 0;
    background-color: #212529; /* Slightly lighter dark background for sections */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-vip-club__section-title {
    font-size: 2.5em;
    color: #ffc107;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-vip-club__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #007bff;
    border-radius: 2px;
}

.page-vip-club__section-text {
    font-size: 1.1em;
    color: #e0e0e0;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px auto;
}

/* Benefits Grid */
.page-vip-club__benefits-grid,
.page-vip-club__tiers-grid,
.page-vip-club__faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-vip-club__benefit-card,
.page-vip-club__tier-card,
.page-vip-club__faq-item {
    background-color: rgba(0, 123, 255, 0.1); /* Semi-transparent main color */
    border: 1px solid #007bff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-vip-club__benefit-card:hover,
.page-vip-club__tier-card:hover,
.page-vip-club__faq-item:hover {
    transform: translateY(-5px);
    background-color: rgba(0, 123, 255, 0.2);
}

.page-vip-club__benefit-title,
.page-vip-club__tier-title,
.page-vip-club__faq-question {
    font-size: 1.5em;
    color: #ffc107;
    margin-bottom: 15px;
}

.page-vip-club__benefit-description,
.page-vip-club__tier-description,
.page-vip-club__faq-answer {
    color: #e0e0e0;
}

/* Tier Specifics */
.page-vip-club__tier-image {
    width: 100%;
    height: auto;
    max-width: 400px; /* Constrain image size within card */
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px;
    display: block;
    margin: 0 auto 20px auto;
    border-radius: 8px;
    object-fit: cover;
}

.page-vip-club__tier-info {
    font-size: 1.1em;
    color: #e0e0e0;
    text-align: center;
    max-width: 900px;
    margin: 60px auto 0 auto;
}

/* Detail Section */
.page-vip-club__detail-item {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
    background-color: rgba(255, 255, 255, 0.05); /* Lighter transparent background for details */
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-vip-club__detail-item:last-child {
    margin-bottom: 0;
}

.page-vip-club__detail-item--reversed {
    flex-direction: row-reverse;
}

.page-vip-club__detail-image {
    flex: 1;
    min-width: 300px; /* Ensure images are not too small */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-vip-club__detail-image img {
    width: 100%;
    height: auto;
    display: block;
    min-width: 200px; /* Enforce minimum image size */
    min-height: 200px;
    object-fit: cover;
}

.page-vip-club__detail-content {
    flex: 2;
}

.page-vip-club__detail-title {
    font-size: 2em;
    color: #ffc107;
    margin-bottom: 20px;
}

.page-vip-club__detail-description {
    font-size: 1.1em;
    color: #e0e0e0;
}

/* How to Join */
.page-vip-club__join-steps {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 40px auto 60px auto;
}

.page-vip-club__step-item {
    background-color: rgba(0, 123, 255, 0.15);
    border-left: 5px solid #007bff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-size: 1.1em;
    color: #f0f0f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-vip-club__step-item strong {
    color: #ffc107;
}

.page-vip-club__step-item a {
    color: #ffc107;
    text-decoration: underline;
}

.page-vip-club__step-item a:hover {
    color: #e0a800;
}

.page-vip-club__cta-block {
    text-align: center;
    margin-top: 50px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Why Choose Section */
.page-vip-club__why-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.page-vip-club__why-item {
    background-color: rgba(255, 193, 7, 0.1); /* Semi-transparent accent color */
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 25px;
    font-size: 1.1em;
    color: #f0f0f0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.page-vip-club__why-item:hover {
    background-color: rgba(255, 193, 7, 0.15);
}

.page-vip-club__why-item strong {
    color: #ffc107;
    display: block;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.page-vip-club__why-item a {
    color: #007bff;
    text-decoration: underline;
}

.page-vip-club__why-item a:hover {
    color: #4da3ff;
}

/* FAQ Section */
.page-vip-club__faq-question {
    cursor: pointer;
    position: relative;
    padding-right: 30px; /* Space for arrow */
}

.page-vip-club__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-vip-club__faq-question.is-active::after {
    content: '-';
    transform: translateY(-50%) rotate(0deg); /* No rotation needed for '-' */
}

.page-vip-club__faq-answer {
    display: none; /* Initially hidden */
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-vip-club__faq-item a {
    color: #007bff;
    text-decoration: underline;
}
.page-vip-club__faq-item a:hover {
    color: #4da3ff;
}

/* Final CTA Section */
.page-vip-club__cta-final-section {
    text-align: center;
    padding: 100px 0;
    background-color: #007bff; /* Main color as background */
    color: #ffffff;
}

.page-vip-club__cta-final-section .page-vip-club__section-title {
    color: #ffc107; /* Accent color for title on main color background */
}

.page-vip-club__cta-final-section .page-vip-club__section-title::after {
    background-color: #ffc107; /* Accent color for underline */
}

.page-vip-club__cta-final-section .page-vip-club__section-text {
    color: #f0f0f0;
    margin-bottom: 50px;
}

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

/* Scroll animation */
.page-vip-club__hidden-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.page-vip-club__hidden-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-vip-club__hero-title {
        font-size: 2.8em;
    }
    .page-vip-club__section-title {
        font-size: 2em;
    }
    .page-vip-club__detail-item {
        flex-direction: column;
        text-align: center;
    }
    .page-vip-club__detail-item--reversed {
        flex-direction: column;
    }
    .page-vip-club__detail-image {
        min-width: 100%; /* Allow image to take full width */
        margin-bottom: 30px;
    }
    .page-vip-club__detail-image img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .page-vip-club {
        padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
    }
    .page-vip-club__hero-container {
        padding: 60px 15px;
        min-height: 400px;
    }
    .page-vip-club__hero-title {
        font-size: 2em;
    }
    .page-vip-club__hero-description {
        font-size: 1em;
    }
    .page-vip-club__button {
        padding: 12px 25px;
        font-size: 1em;
        min-width: unset;
    }
    .page-vip-club__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-vip-club__overview-section,
    .page-vip-club__tiers-section,
    .page-vip-club__details-section,
    .page-vip-club__how-to-join-section,
    .page-vip-club__why-choose-section,
    .page-vip-club__faq-section,
    .page-vip-club__cta-final-section {
        padding: 60px 0;
    }
    .page-vip-club__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-vip-club__section-text {
        font-size: 1em;
        margin-bottom: 40px;
    }
    .page-vip-club__benefits-grid,
    .page-vip-club__tiers-grid,
    .page-vip-club__faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-vip-club__benefit-card,
    .page-vip-club__tier-card,
    .page-vip-club__faq-item {
        padding: 20px;
    }
    .page-vip-club__benefit-title,
    .page-vip-club__tier-title,
    .page-vip-club__faq-question {
        font-size: 1.3em;
    }
    .page-vip-club__detail-item {
        padding: 30px 20px;
        margin-bottom: 60px;
    }
    .page-vip-club__detail-title {
        font-size: 1.6em;
    }
    .page-vip-club__detail-description {
        font-size: 1em;
    }
    .page-vip-club__join-steps {
        margin-bottom: 40px;
    }
    .page-vip-club__step-item {
        font-size: 1em;
        padding: 15px;
    }
    .page-vip-club__why-list {
        grid-template-columns: 1fr;
    }

    /* Mobile image rules */
    .page-vip-club__hero-image img,
    .page-vip-club__tier-image,
    .page-vip-club__detail-image img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Ensure images are not smaller than 200px */
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .page-vip-club__hero-title {
        font-size: 1.8em;
    }
    .page-vip-club__section-title {
        font-size: 1.6em;
    }
}