/* General Styling for 777 VIP Club Page */
.page-vip-club {
    font-family: Arial, sans-serif;
    color: #FFF6D6; /* Text Main */
    background-color: #0A0A0A; /* Background */
    line-height: 1.6;
}

.page-vip-club__section-title {
    font-size: 2.5em;
    color: #F2C14E; /* Primary */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    letter-spacing: 1px;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.5);
}

.page-vip-club__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: rgba(255, 246, 214, 0.8);
}

.page-vip-club__card-title {
    font-size: 1.5em;
    color: #FFD36B; /* Auxiliary */
    margin-top: 15px;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-vip-club__card-text {
    font-size: 1em;
    color: rgba(255, 246, 214, 0.7);
}

.page-vip-club__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1em;
    text-align: center;
    min-width: 150px; /* Ensure button minimum width is >= 200px equivalent for text content */
    box-sizing: border-box;
}

.page-vip-club__btn--primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 216, 106, 0.4);
}

.page-vip-club__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 216, 106, 0.6);
}

.page-vip-club__btn--secondary {
    background-color: transparent;
    color: #F2C14E; /* Primary */
    border: 2px solid #3A2A12; /* Border */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page-vip-club__btn--secondary:hover {
    background-color: rgba(242, 193, 78, 0.1);
    border-color: #F2C14E;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(242, 193, 78, 0.3);
}

.page-vip-club__btn--small {
    padding: 8px 15px;
    font-size: 0.9em;
    min-width: 100px;
}

/* Hero Section */
.page-vip-club__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 10px; /* Small top padding for initial section */
}

.page-vip-club__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Adjust as needed */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.page-vip-club__hero-content {
    padding: 40px 20px;
    text-align: center;
    background-color: #0A0A0A; /* Background */
}

.page-vip-club__main-title {
    font-size: clamp(2.5em, 5vw, 3.2em);
    color: #F2C14E; /* Primary */
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.7);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-vip-club__lead-text {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto 30px auto;
    color: rgba(255, 246, 214, 0.9);
}

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

/* Benefits Section */
.page-vip-club__benefits-section,
.page-vip-club__tier-section,
.page-vip-club__exclusive-games-section,
.page-vip-club__personalized-service-section,
.page-vip-club__join-section,
.page-vip-club__faq-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #0A0A0A;
}

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

.page-vip-club__benefit-card {
    background-color: #111111; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid #3A2A12; /* Border */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-club__benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6), 0 0 15px #FFD36B; /* Glow */
}

.page-vip-club__benefit-icon {
    width: 100%;
    max-width: 250px;
    height: auto;
    object-fit: contain;
    margin-bottom: 15px;
    min-width: 200px;
    min-height: 200px;
}

/* Tier Section */
.page-vip-club__tier-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-vip-club__tier-card {
    background-color: #111111; /* Card BG */
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid #3A2A12; /* Border */
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.page-vip-club__tier-card:hover {
    transform: translateY(-5px);
    border-color: #F2C14E; /* Primary */
}

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

/* Exclusive Games Section */
.page-vip-club__game-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-vip-club__game-card {
    background-color: #111111; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid #3A2A12; /* Border */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-club__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6), 0 0 15px #F2C14E; /* Primary */
}

.page-vip-club__game-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-vip-club__game-title {
    font-size: 1.3em;
    color: #F2C14E; /* Primary */
    margin: 15px 15px 5px 15px;
    font-weight: bold;
}

.page-vip-club__game-provider {
    font-size: 0.9em;
    color: rgba(255, 246, 214, 0.6);
    margin: 0 15px 15px 15px;
}

.page-vip-club__game-card .page-vip-club__btn {
    width: calc(100% - 30px);
    margin: 0 15px 15px 15px;
}

/* Personalized Service Section */
.page-vip-club__service-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-vip-club__service-item {
    background-color: #111111; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid #3A2A12; /* Border */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-club__service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6), 0 0 15px #FFD36B; /* Glow */
}

.page-vip-club__service-icon {
    width: 100%;
    max-width: 250px;
    height: auto;
    object-fit: contain;
    margin-bottom: 15px;
    min-width: 200px;
    min-height: 200px;
}

/* How to Join Section */
.page-vip-club__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-vip-club__step-card {
    background-color: #111111; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid #3A2A12; /* Border */
}

.page-vip-club__step-card .page-vip-club__card-title {
    color: #FFD36B; /* Auxiliary */
}

.page-vip-club__join-cta {
    text-align: center;
}

/* FAQ Section */
.page-vip-club__faq-item {
    background-color: #111111; /* Card BG */
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid #3A2A12; /* Border */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-vip-club__faq-question {
    font-size: 1.2em;
    color: #F2C14E; /* Primary */
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: bold;
}

.page-vip-club__faq-answer {
    font-size: 1em;
    color: rgba(255, 246, 214, 0.7);
    display: block; /* Ensure answer is visible by default or toggled by JS */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-vip-club__hero-content {
        padding: 30px 15px;
    }

    .page-vip-club__main-title {
        font-size: clamp(2em, 8vw, 2.8em);
    }

    .page-vip-club__lead-text {
        font-size: 1em;
    }

    .page-vip-club__hero-buttons,
    .page-vip-club__tier-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .page-vip-club__btn {
        width: 100%;
        max-width: 280px;
    }

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

    .page-vip-club__section-description {
        font-size: 0.95em;
    }

    .page-vip-club__benefits-grid,
    .page-vip-club__tier-list,
    .page-vip-club__exclusive-games-section .page-vip-club__game-carousel,
    .page-vip-club__service-points,
    .page-vip-club__steps-grid {
        grid-template-columns: 1fr;
    }

    .page-vip-club__benefit-icon,
    .page-vip-club__service-icon,
    .page-vip-club__game-thumbnail {
        min-width: 200px;
        max-width: 100%;
        height: auto;
    }

    /* Enforce min-width for all content area images */
    .page-vip-club img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* WCAG AA requirement */
        min-height: 200px; /* WCAG AA requirement */
    }

    /* Specific override for mobile to ensure image sizing */
    @media (max-width: 768px) {
        .page-vip-club img {
            max-width: 100% !important;
            height: auto !important;
        }
    }
}

/* Ensure images in content areas are never smaller than 200px */
.page-vip-club img {
    min-width: 200px;
    min-height: 200px;
}