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

.page-vip-club__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
    background-color: #000000; /* Dark background for hero */
    color: #FFFFFF;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-vip-club__hero-image-wrapper {
    width: 100%;
    max-height: 700px;
    overflow: hidden;
}

.page-vip-club__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

.page-vip-club__hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    max-width: 900px;
    width: 90%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-vip-club__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FCBC45; /* Login color for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-weight: bold;
}

.page-vip-club__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #FFFFFF;
}

.page-vip-club__hero-button {
    display: inline-block;
    padding: 15px 30px;
    margin: 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
}

.page-vip-club__hero-button--register {
    background-color: #FFFFFF;
    color: #000000;
}

.page-vip-club__hero-button--register:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.page-vip-club__hero-button--login {
    background-color: #FCBC45;
    color: #000000;
}

.page-vip-club__hero-button--login:hover {
    background-color: #e0a030;
    transform: translateY(-2px);
}

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

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

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

.page-vip-club__card-grid,
.page-vip-club__steps-grid,
.page-vip-club__tiers-grid,
.page-vip-club__features-grid {
    display: grid;
    gap: 30px;
    margin-top: 30px;
}

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

.page-vip-club__card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.page-vip-club__card:hover {
    transform: translateY(-5px);
}

.page-vip-club__card-image {
    width: 100%;
    height: 267px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

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

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

.page-vip-club__how-to-join-section {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.page-vip-club__steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.page-vip-club__step {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-vip-club__step-number {
    font-size: 3em;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 0;
}

.page-vip-club__step-title {
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.page-vip-club__step-text {
    font-size: 1em;
    color: #666666;
    position: relative;
    z-index: 1;
}

.page-vip-club__cta-button {
    display: block;
    width: fit-content;
    margin: 50px auto 0 auto;
    padding: 15px 40px;
    background-color: #FCBC45;
    color: #000000;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
}

.page-vip-club__cta-button:hover {
    background-color: #e0a030;
    transform: translateY(-2px);
}

.page-vip-club__tiers-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

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

.page-vip-club__tier-card {
    background-color: #000000;
    color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 350px; /* Ensure consistent card height */
}

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

.page-vip-club__tier-card--bronze {
    background: linear-gradient(135deg, #a0522d, #8b4513);
}

.page-vip-club__tier-card--silver {
    background: linear-gradient(135deg, #c0c0c0, #a8a8a8);
}

.page-vip-club__tier-card--gold {
    background: linear-gradient(135deg, #ffd700, #daa520);
}

.page-vip-club__tier-card--platinum {
    background: linear-gradient(135deg, #e5e4e2, #d3d3d3);
}

.page-vip-club__tier-card--diamond {
    background: linear-gradient(135deg, #b9f2ff, #87ceeb);
}

.page-vip-club__tier-card--royal {
    background: linear-gradient(135deg, #4b0082, #8a2be2);
}

.page-vip-club__tier-title {
    font-size: 2em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #FFFFFF;
}

.page-vip-club__tier-text {
    font-size: 1em;
    color: #e0e0e0;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-vip-club__tier-benefits {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: auto; /* Push benefits to the bottom */
}

.page-vip-club__tier-benefits li {
    font-size: 0.95em;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    color: #f0f0f0;
}

.page-vip-club__benefit-icon {
    color: #FCBC45;
    margin-right: 10px;
    font-size: 1.2em;
}

.page-vip-club__responsible-gaming-section {
    background-color: #f0f0f0;
    padding: 60px 0;
    text-align: center;
}

.page-vip-club__text-link {
    color: #000000;
    text-decoration: underline;
    font-weight: bold;
}

.page-vip-club__text-link:hover {
    color: #FCBC45;
}

.page-vip-club__cta-button--secondary {
    background-color: #000000;
    color: #FFFFFF;
}

.page-vip-club__cta-button--secondary:hover {
    background-color: #333333;
}

.page-vip-club__why-choose-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

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

.page-vip-club__feature-item {
    background-color: #fefefe;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.page-vip-club__feature-item:hover {
    transform: translateY(-5px);
}

.page-vip-club__feature-image {
    width: 100%;
    height: 225px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-vip-club__feature-title {
    font-size: 1.8em;
    color: #000000;
    margin-bottom: 15px;
}

.page-vip-club__feature-text {
    font-size: 1em;
    color: #666666;
}

.page-vip-club__cta-bottom-section {
    background-color: #000000;
    color: #FFFFFF;
    padding: 80px 20px;
    text-align: center;
}

.page-vip-club__cta-title {
    font-size: 3em;
    color: #FCBC45;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-vip-club__cta-description {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #f0f0f0;
}

.page-vip-club__cta-button--register,
.page-vip-club__cta-button--login {
    display: inline-block;
    margin: 10px;
}

.page-vip-club__faq-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.page-vip-club__faq-item {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 25px;
    margin-bottom: 20px;
    border-left: 5px solid #FCBC45;
}

.page-vip-club__faq-question {
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: bold;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .page-vip-club__hero-title {
        font-size: 2.8em;
    }
    .page-vip-club__hero-description {
        font-size: 1.1em;
    }
    .page-vip-club__section-title {
        font-size: 2em;
    }
    .page-vip-club__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-vip-club__hero-section {
        padding-top: var(--header-offset, 120px); /* Mobile header offset */
        min-height: 500px;
    }
    .page-vip-club__hero-image-wrapper {
        min-height: 500px; /* Ensure image covers background on mobile */
    }
    .page-vip-club__hero-image {
        max-width: 100%;
        height: auto;
        min-height: 500px;
    }
    .page-vip-club__hero-content {
        padding: 15px;
        width: 95%;
    }
    .page-vip-club__hero-title {
        font-size: 2.2em;
        margin-bottom: 15px;
    }
    .page-vip-club__hero-description {
        font-size: 1em;
        margin-bottom: 20px;
    }
    .page-vip-club__hero-button {
        padding: 12px 25px;
        font-size: 1em;
        margin: 5px;
    }
    .page-vip-club__section-title {
        font-size: 1.8em;
    }
    .page-vip-club__section-description {
        font-size: 0.95em;
    }
    .page-vip-club__card-grid,
    .page-vip-club__steps-grid,
    .page-vip-club__tiers-grid,
    .page-vip-club__features-grid {
        grid-template-columns: 1fr;
    }
    .page-vip-club__card-image, .page-vip-club__feature-image {
        height: 200px; /* Adjust image height for smaller screens, but keep >= 200px */
        max-width: 100%; /* Ensure images don't overflow */
    }
    .page-vip-club__cta-title {
        font-size: 2em;
    }
    .page-vip-club__cta-description {
        font-size: 1em;
    }
    .page-vip-club__cta-button {
        font-size: 1.1em;
        padding: 12px 30px;
    }
    .page-vip-club__faq-question {
        font-size: 1.3em;
    }
    .page-vip-club__faq-answer {
        font-size: 0.95em;
    }
    /* Ensure all content area images are responsive and don't overflow */
    .page-vip-club img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-vip-club__hero-title {
        font-size: 1.8em;
    }
    .page-vip-club__hero-description {
        font-size: 0.9em;
    }
    .page-vip-club__hero-button {
        width: 100%;
        margin: 5px 0;
    }
    .page-vip-club__section-title {
        font-size: 1.5em;
    }
    .page-vip-club__cta-title {
        font-size: 1.8em;
    }
    .page-vip-club__faq-question {
        font-size: 1.1em;
    }
}