/* style/vip-club.css */
.page-vip-club {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light backgrounds */
}

/* Fixed Header Spacing */
.page-vip-club__hero-section {
    padding-top: var(--header-offset, 120px);
}

/* Sections */
.page-vip-club__section-title {
    font-size: 2.5em;
    color: #017439;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

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

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

/* Hero Section */
.page-vip-club__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    background-color: #017439;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
    padding-bottom: 60px;
}

.page-vip-club__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.2;
}

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

.page-vip-club__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: bold;
}

.page-vip-club__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    line-height: 1.5;
    color: #f0f0f0;
}

/* Buttons */
.page-vip-club__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-vip-club__btn-primary,
.page-vip-club__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
}

.page-vip-club__btn-primary {
    background-color: #C30808;
    color: #FFFF00;
    border: 2px solid #C30808;
}

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

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

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

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

.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: #ffffff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #333333;
}

.page-vip-club__benefit-card:hover {
    transform: translateY(-10px);
}

.page-vip-club__benefit-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    object-fit: cover;
    border-radius: 10px;
}

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

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

/* Join Section */
.page-vip-club__join-section {
    padding: 80px 0;
    background-color: #017439;
    color: #ffffff;
}

.page-vip-club__join-section .page-vip-club__section-title,
.page-vip-club__join-section .page-vip-club__section-description {
    color: #ffffff;
}

.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: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-vip-club__step-number {
    font-size: 2.5em;
    font-weight: bold;
    color: #FFFF00;
    margin-bottom: 15px;
    display: block;
}

.page-vip-club__step-card .page-vip-club__card-title {
    color: #ffffff;
}

.page-vip-club__step-card .page-vip-club__card-text {
    color: #f0f0f0;
}

.page-vip-club__step-card a {
    color: #FFFF00;
    text-decoration: underline;
}

.page-vip-club__step-card a:hover {
    color: #ffd700;
}

.page-vip-club__join-button {
    margin-top: 20px;
}

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

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

.page-vip-club__tier-card {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    color: #333333;
}

.page-vip-club__tier-card .page-vip-club__card-title {
    color: #017439;
}

.page-vip-club__tiers-image {
    display: block;
    margin: 40px auto 0 auto;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Exclusive Games Section */
.page-vip-club__exclusive-games-section {
    padding: 80px 0;
    background-color: #017439;
    color: #ffffff;
}

.page-vip-club__exclusive-games-section .page-vip-club__section-title,
.page-vip-club__exclusive-games-section .page-vip-club__section-description {
    color: #ffffff;
}

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

.page-vip-club__game-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-vip-club__game-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.page-vip-club__game-card .page-vip-club__card-title {
    color: #ffffff;
}

.page-vip-club__game-card .page-vip-club__card-text {
    color: #f0f0f0;
}

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

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

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

.page-vip-club__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
}

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

.page-vip-club__faq-title {
    font-size: 1.2em;
    margin: 0;
    color: #017439;
    font-weight: bold;
}

.page-vip-club__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: #017439;
    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: #ffffff;
    color: #555555;
}

.page-vip-club__faq-item.active .page-vip-club__faq-answer {
    max-height: 1000px !important;
    padding: 15px 25px 25px 25px;
}

.page-vip-club__faq-answer p {
    margin-bottom: 0;
}

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

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

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

/* Common Dark/Light Background Classes for Contrast */
.page-vip-club__dark-section {
    background-color: #017439;
    color: #ffffff;
}
.page-vip-club__dark-section .page-vip-club__section-title,
.page-vip-club__dark-section .page-vip-club__section-description {
    color: #ffffff;
}
.page-vip-club__light-bg {
    background-color: #ffffff;
    color: #333333;
}
.page-vip-club__light-bg .page-vip-club__section-title {
    color: #017439;
}
.page-vip-club__light-bg .page-vip-club__section-description {
    color: #555555;
}

/* Image optimization for display area */
.page-vip-club img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive Styles */
@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 {
        font-size: 16px;
        line-height: 1.6;
    }

    /* Hero Section */
    .page-vip-club__hero-section {
        min-height: 500px;
        padding-bottom: 40px;
    }
    .page-vip-club__hero-title {
        font-size: 2.5em;
    }
    .page-vip-club__hero-description {
        font-size: 1.1em;
    }
    .page-vip-club__cta-buttons {
        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;
        white-space: normal !important;
        word-wrap: break-word !important;
        box-sizing: border-box !important;
    }

    /* Sections */
    .page-vip-club__section-title {
        font-size: 1.8em;
    }
    .page-vip-club__section-description {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .page-vip-club__container {
        padding: 0 15px;
    }

    /* Grids */
    .page-vip-club__benefits-grid,
    .page-vip-club__steps-grid,
    .page-vip-club__tiers-grid,
    .page-vip-club__games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Cards */
    .page-vip-club__benefit-card,
    .page-vip-club__step-card,
    .page-vip-club__tier-card,
    .page-vip-club__game-card {
        padding: 25px;
    }
    .page-vip-club__card-title {
        font-size: 1.3em;
    }
    .page-vip-club__benefit-icon {
        width: 80px;
        height: 80px;
    }
    .page-vip-club__game-image {
        max-width: 250px;
    }

    /* FAQ */
    .page-vip-club__faq-question {
        padding: 15px 20px;
    }
    .page-vip-club__faq-title {
        font-size: 1.1em;
    }
    .page-vip-club__faq-answer {
        padding: 0 20px;
    }
    .page-vip-club__faq-item.active .page-vip-club__faq-answer {
        padding: 10px 20px 20px 20px;
    }

    /* Mobile image and video responsiveness (crucial) */
    .page-vip-club img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-vip-club video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-vip-club__section,
    .page-vip-club__card,
    .page-vip-club__container,
    .page-vip-club__video-section,
    .page-vip-club__video-container,
    .page-vip-club__video-wrapper,
    .page-vip-club__cta-buttons,
    .page-vip-club__button-group,
    .page-vip-club__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-vip-club__hero-section {
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-vip-club__cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
}