/* style/vip-club.css */
.page-vip-club {
    color: #333333; /* Dark text for light body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensure spacing for fixed header */
    background-color: #FFFFFF; /* Explicitly set background to ensure consistency with body */
}

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

/* Hero Section */
.page-vip-club__hero-section {
    background-color: #000000; /* Dark background for hero */
    color: #FFFFFF; /* Light text on dark background */
    padding: 80px 0;
    text-align: center;
    overflow: hidden; /* Prevent image overflow if not perfectly sized */
}

.page-vip-club__hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-vip-club__hero-content {
    max-width: 800px;
}

.page-vip-club__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FCBC45; /* Highlight title with login button color */
}

.page-vip-club__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.8;
}

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

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

.page-vip-club__button--register {
    background-color: #FFFFFF; /* Register button color */
    color: #000000;
    border: 2px solid #FFFFFF;
}

.page-vip-club__button--register:hover {
    background-color: transparent;
    color: #FFFFFF;
}

.page-vip-club__button--login {
    background-color: #FCBC45; /* Login button color */
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-vip-club__button--login:hover {
    background-color: transparent;
    color: #FCBC45;
}

.page-vip-club__hero-image {
    width: 100%;
    max-width: 900px; /* Adjust based on desired layout */
    margin-top: 40px;
}

.page-vip-club__hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    min-width: 200px; /* Ensure display size >= 200px */
    min-height: 200px; /* Ensure display size >= 200px */
    object-fit: cover;
}

/* General Section Styles */
.page-vip-club__section-title {
    font-size: 2.5em;
    color: #000000; /* Dark text for titles on light background */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

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

/* Benefits Section */
.page-vip-club__benefits-section {
    padding: 80px 0;
    background-color: #F8F8F8;
}

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

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

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

.page-vip-club__benefit-card img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 20px;
    min-width: 200px; /* Ensure display size >= 200px */
    min-height: 200px; /* Ensure display size >= 200px */
    object-fit: cover;
}

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

.page-vip-club__card-description {
    font-size: 1em;
    color: #555555;
}

.page-vip-club__cta-text {
    text-align: center;
    font-size: 1.2em;
    margin-top: 50px;
    margin-bottom: 30px;
    font-weight: bold;
    color: #000000;
}

.page-vip-club__button--cta {
    display: block;
    width: fit-content;
    margin: 0 auto;
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-vip-club__button--cta:hover {
    background-color: transparent;
    color: #FCBC45;
}

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

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

.page-vip-club__tier-card {
    background-color: #000000; /* Dark background for tier cards */
    color: #FFFFFF; /* Light text on dark background */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-vip-club__tier-card img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 20px;
    min-width: 200px; /* Ensure display size >= 200px */
    min-height: 200px; /* Ensure display size >= 200px */
    object-fit: cover;
}

.page-vip-club__tier-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
    width: 100%;
}

.page-vip-club__tier-features li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.page-vip-club__tier-features li::before {
    content: '\2605'; /* Star icon */
    color: #FCBC45;
    position: absolute;
    left: 0;
}

.page-vip-club__tier-description {
    font-size: 0.95em;
    color: #CCCCCC;
    margin-top: 20px;
}

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

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

.page-vip-club__step-card {
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-vip-club__step-card img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 20px;
    min-width: 200px; /* Ensure display size >= 200px */
    min-height: 200px; /* Ensure display size >= 200px */
    object-fit: cover;
}

.page-vip-club__button--small {
    padding: 10px 20px;
    font-size: 0.9em;
    margin-top: 20px;
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-vip-club__button--small:hover {
    background-color: transparent;
    color: #FCBC45;
}

/* Support Section */
.page-vip-club__support-section {
    padding: 80px 0;
    background-color: #000000; /* Dark background */
    color: #FFFFFF; /* Light text */
}

.page-vip-club__support-section .page-vip-club__section-title,
.page-vip-club__support-section .page-vip-club__section-intro,
.page-vip-club__support-section .page-vip-club__cta-text {
    color: #FFFFFF;
}

.page-vip-club__support-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-vip-club__support-image {
    flex: 1;
    min-width: 300px;
}

.page-vip-club__support-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    min-width: 200px; /* Ensure display size >= 200px */
    min-height: 200px; /* Ensure display size >= 200px */
}

.page-vip-club__support-features {
    flex: 2;
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-vip-club__support-features li {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    margin-bottom: 15px;
    border-left: 5px solid #FCBC45;
    border-radius: 5px;
}

.page-vip-club__feature-title {
    font-size: 1.4em;
    color: #FCBC45;
    margin-bottom: 10px;
}

.page-vip-club__support-features p {
    color: #E0E0E0;
}

/* Responsible Gaming Section */
.page-vip-club__responsible-gaming-section {
    padding: 80px 0;
    background-color: #F8F8F8;
}

.page-vip-club__responsible-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-vip-club__responsible-text {
    flex: 2;
    min-width: 300px;
}

.page-vip-club__responsible-text p {
    margin-bottom: 20px;
    color: #555555;
}

.page-vip-club__responsible-list {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #555555;
}

.page-vip-club__responsible-list li {
    margin-bottom: 10px;
}

.page-vip-club__responsible-image {
    flex: 1;
    min-width: 300px;
}

.page-vip-club__responsible-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Ensure display size >= 200px */
    min-height: 200px; /* Ensure display size >= 200px */
}

/* Final CTA Section */
.page-vip-club__cta-final-section {
    padding: 80px 0;
    background-color: #000000; /* Dark background */
    color: #FFFFFF; /* Light text */
    text-align: center;
}

.page-vip-club__cta-final-section .page-vip-club__section-title,
.page-vip-club__cta-final-section .page-vip-club__section-intro {
    color: #FFFFFF;
}

.page-vip-club__button--register-final,
.page-vip-club__button--login-final {
    margin: 0 10px 20px;
}

.page-vip-club__button--register-final {
    background-color: #FFFFFF;
    color: #000000;
    border: 2px solid #FFFFFF;
}

.page-vip-club__button--register-final:hover {
    background-color: transparent;
    color: #FFFFFF;
}

.page-vip-club__button--login-final {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-vip-club__button--login-final:hover {
    background-color: transparent;
    color: #FCBC45;
}

/* Responsive Design */
@media (min-width: 769px) {
    .page-vip-club__hero-container {
        flex-direction: row;
        text-align: left;
    }

    .page-vip-club__hero-content {
        text-align: left;
        flex: 1;
    }

    .page-vip-club__hero-image {
        flex: 1;
        margin-top: 0;
    }

    .page-vip-club__hero-buttons {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .page-vip-club__hero-title {
        font-size: 2.2em;
    }

    .page-vip-club__hero-description {
        font-size: 1em;
    }

    .page-vip-club__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-vip-club__button {
        width: 100%;
        max-width: 300px;
    }

    .page-vip-club__section-title {
        font-size: 2em;
    }

    .page-vip-club__section-intro {
        font-size: 1em;
    }

    .page-vip-club__benefits-grid,
    .page-vip-club__tiers-grid,
    .page-vip-club__steps-grid {
        grid-template-columns: 1fr;
    }

    .page-vip-club__support-content,
    .page-vip-club__responsible-content {
        flex-direction: column;
    }

    .page-vip-club__support-image,
    .page-vip-club__responsible-image {
        min-width: unset;
        width: 100%;
    }
    
    /* Ensure all images in content sections are responsive and do not overflow */
    .page-vip-club img {
        max-width: 100%;
        height: auto;
    }
    /* Specific rules for images that might be smaller than 200px in the HTML attributes but need to be responsive */
    .page-vip-club__benefit-card img,
    .page-vip-club__tier-card img,
    .page-vip-club__step-card img,
    .page-vip-club__support-image img,
    .page-vip-club__responsible-image img {
        max-width: 100% !important;
        height: auto !important;
        min-width: 200px; /* Still enforce minimum display size */
        min-height: 200px; /* Still enforce minimum display size */
    }
    /* Override to ensure images are not smaller than 200px on mobile if their parent container allows */
    .page-vip-club__benefit-card img,
    .page-vip-club__tier-card img,
    .page-vip-club__step-card img,
    .page-vip-club__support-image img,
    .page-vip-club__responsible-image img {
        width: 100%; /* Make sure they take full width of parent */
        height: auto;
        min-width: 200px; /* Still enforce minimum display size */
        min-height: 200px; /* Still enforce minimum display size */
    }
}

/* Ensure no image filter is applied */
.page-vip-club img {
    filter: none;
}