/* style/vip-club-benefits.css */

.page-vip-club-benefits {
    font-family: 'Arial', sans-serif;
    color: #e5dfd3; /* Light grey for general text on dark background */
    background-color: #1A202C;
    line-height: 1.6;
}

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

.page-vip-club-benefits__section-title {
    color: #FFD700;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.page-vip-club-benefits__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #cccccc;
}

.page-vip-club-benefits__btn {
    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, transform 0.2s ease;
    margin: 10px;
    text-align: center;
}

.page-vip-club-benefits__btn--primary {
    background-color: #FFD700;
    color: #1A202C;
    border: 2px solid #FFD700;
}

.page-vip-club-benefits__btn--primary:hover {
    background-color: #e5c100;
    color: #0d1015;
    transform: translateY(-2px);
}

.page-vip-club-benefits__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-vip-club-benefits__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-2px);
}

.page-vip-club-benefits__link-inline {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-vip-club-benefits__link-inline:hover {
    text-decoration: underline;
}

/* Hero Section */
.page-vip-club-benefits__hero {
    background: linear-gradient(135deg, #1A202C 0%, #3a4252 100%);
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    min-height: 500px;
    flex-wrap: wrap-reverse;
}

.page-vip-club-benefits__hero-content {
    text-align: center;
    max-width: 600px;
}

.page-vip-club-benefits__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-vip-club-benefits__hero-description {
    font-size: 1.3em;
    color: #e5dfd3;
    margin-bottom: 30px;
}

.page-vip-club-benefits__hero-image-wrapper {
    flex-shrink: 0;
}

.page-vip-club-benefits__hero-image {
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Intro Section */
.page-vip-club-benefits__intro {
    padding: 60px 0;
    background-color: #1A202C;
}

/* Tiers Section */
.page-vip-club-benefits__tiers {
    padding: 60px 0;
    background-color: #0d1015;
}

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

.page-vip-club-benefits__tier-card {
    background-color: #1A202C;
    border: 1px solid #3a4252;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.page-vip-club-benefits__tier-card:hover {
    transform: translateY(-10px);
    border-color: #FFD700;
}

.page-vip-club-benefits__tier-title {
    color: #FFD700;
    font-size: 1.8em;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.page-vip-club-benefits__tier-description {
    font-size: 1em;
    color: #cccccc;
    margin-bottom: 20px;
    min-height: 60px;
}

.page-vip-club-benefits__tier-benefits {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    text-align: left;
}

.page-vip-club-benefits__tier-benefits li {
    color: #e5dfd3;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-size: 0.95em;
}

.page-vip-club-benefits__icon--check {
    color: #FFD700;
    margin-right: 10px;
    font-size: 1.2em;
}

.page-vip-club-benefits__icon--check::before {
    content: '✔'; /* Unicode checkmark */
}

.page-vip-club-benefits__tier-image {
    max-width: 120px;
    height: auto;
    margin-top: 20px;
    border-radius: 50%;
    border: 3px solid #FFD700;
}

.page-vip-club-benefits__note {
    text-align: center;
    font-style: italic;
    color: #888;
    margin-top: 40px;
    font-size: 0.9em;
}

/* Exclusive Benefits Section */
.page-vip-club-benefits__exclusive-benefits {
    padding: 60px 0;
    background-color: #1A202C;
}

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

.page-vip-club-benefits__benefit-item {
    background-color: #0d1015;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #3a4252;
}

.page-vip-club-benefits__benefit-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    border-radius: 50%;
    background-color: #FFD700;
    padding: 10px;
    object-fit: contain;
}

.page-vip-club-benefits__benefit-title {
    color: #FFD700;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-vip-club-benefits__benefit-description {
    color: #cccccc;
    font-size: 1em;
}

/* How to Join Section */
.page-vip-club-benefits__how-to-join {
    padding: 60px 0;
    background-color: #0d1015;
}

.page-vip-club-benefits__steps {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    max-width: 800px;
    margin: 40px auto;
}

.page-vip-club-benefits__steps li {
    counter-increment: step-counter;
    background-color: #1A202C;
    border-left: 5px solid #FFD700;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 8px;
    position: relative;
    color: #e5dfd3;
    font-size: 1.1em;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-vip-club-benefits__steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #FFD700;
    color: #1A202C;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
}

.page-vip-club-benefits__steps li strong {
    color: #FFD700;
}

/* FAQ Section */
.page-vip-club-benefits__faq {
    padding: 60px 0;
    background-color: #1A202C;
}

.page-vip-club-benefits__faq-item {
    background-color: #0d1015;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-vip-club-benefits__faq-question {
    color: #FFD700;
    font-size: 1.3em;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-vip-club-benefits__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-benefits__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-vip-club-benefits__faq-answer {
    color: #cccccc;
    font-size: 1em;
    display: none;
    padding-top: 10px;
    border-top: 1px solid #3a4252;
    margin-top: 10px;
}

.page-vip-club-benefits__faq-answer.active {
    display: block;
}

/* CTA Section */
.page-vip-club-benefits__cta {
    padding: 80px 0;
    background: linear-gradient(45deg, #1A202C, #3a4252);
    text-align: center;
}

.page-vip-club-benefits__cta-title {
    color: #FFD700;
    font-size: 2.8em;
    margin-bottom: 20px;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

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

.page-vip-club-benefits__cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-vip-club-benefits__hero {
        flex-direction: column-reverse;
        text-align: center;
    }

    .page-vip-club-benefits__hero-content {
        padding: 0 20px;
    }

    .page-vip-club-benefits__hero-title {
        font-size: 2.8em;
    }

    .page-vip-club-benefits__hero-image {
        max-width: 300px;
    }

    .page-vip-club-benefits__tier-grid,
    .page-vip-club-benefits__benefits-grid {
        grid-template-columns: 1fr;
    }

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

    .page-vip-club-benefits__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-vip-club-benefits__hero {
        padding: 50px 0;
    }

    .page-vip-club-benefits__hero-title {
        font-size: 2.2em;
    }

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

    .page-vip-club-benefits__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-vip-club-benefits__section-title {
        font-size: 1.8em;
    }

    .page-vip-club-benefits__text-content {
        font-size: 0.95em;
    }

    .page-vip-club-benefits__tier-card,
    .page-vip-club-benefits__benefit-item,
    .page-vip-club-benefits__faq-item {
        padding: 20px;
    }

    .page-vip-club-benefits__faq-question {
        font-size: 1.1em;
    }
}

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

    .page-vip-club-benefits__hero-image {
        max-width: 250px;
    }

    .page-vip-club-benefits__section-title {
        font-size: 1.5em;
    }

    .page-vip-club-benefits__cta-title {
        font-size: 1.8em;
    }

    .page-vip-club-benefits__cta-buttons {
        flex-direction: column;
    }

    .page-vip-club-benefits__btn {
        width: 80%;
        margin: 10px auto;
    }

    .page-vip-club-benefits__steps li {
        font-size: 1em;
    }
}