/* style/promotions-vip-exclusive-benefits.css */
.page-promotions-vip-exclusive-benefits {
    font-family: 'Arial', sans-serif;
    color: #ffffff; /* Default text color for dark background */
    background-color: #000000; /* Main background color */
    line-height: 1.6;
}

.page-promotions-vip-exclusive-benefits__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-promotions-vip-exclusive-benefits__hero-section {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-vip-exclusive-benefits__hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.page-promotions-vip-exclusive-benefits__hero-title {
    font-size: 3.2em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    font-weight: bold;
}

.page-promotions-vip-exclusive-benefits__hero-description {
    font-size: 1.2em;
    color: #f0f0f0;
    margin-bottom: 30px;
}

.page-promotions-vip-exclusive-benefits__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    overflow: hidden;
}

.page-promotions-vip-exclusive-benefits__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transform: scale(1.1);
}

.page-promotions-vip-exclusive-benefits__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #000000; /* Black text on gold */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-promotions-vip-exclusive-benefits__cta-button:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-3px);
}

.page-promotions-vip-exclusive-benefits__cta-button--large {
    padding: 18px 35px;
    font-size: 1.3em;
}

.page-promotions-vip-exclusive-benefits__intro-section,
.page-promotions-vip-exclusive-benefits__vip-tiers-section,
.page-promotions-vip-exclusive-benefits__detailed-benefits-section,
.page-promotions-vip-exclusive-benefits__how-to-join-section,
.page-promotions-vip-exclusive-benefits__faq-section,
.page-promotions-vip-exclusive-benefits__final-cta-section {
    padding: 60px 0;
    background-color: #1a1a1a; /* Slightly lighter black for sections */
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-promotions-vip-exclusive-benefits__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-promotions-vip-exclusive-benefits__text-content {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #cccccc;
}

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

.page-promotions-vip-exclusive-benefits__feature-item {
    background-color: #000000;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.page-promotions-vip-exclusive-benefits__feature-item:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
}

.page-promotions-vip-exclusive-benefits__feature-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-vip-exclusive-benefits__feature-item p {
    color: #b0b0b0;
    font-size: 1em;
}

.page-promotions-vip-exclusive-benefits__vip-tiers-section {
    background-color: #000000;
}

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

.page-promotions-vip-exclusive-benefits__tier-card {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

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

.page-promotions-vip-exclusive-benefits__tier-image {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-promotions-vip-exclusive-benefits__tier-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-vip-exclusive-benefits__tier-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.page-promotions-vip-exclusive-benefits__tier-card ul li {
    color: #b0b0b0;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 1em;
}

.page-promotions-vip-exclusive-benefits__tier-card ul li::before {
    content: '✓';
    color: #FFD700;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page-promotions-vip-exclusive-benefits__note {
    font-size: 0.9em;
    color: #999999;
    margin-top: 30px;
}

.page-promotions-vip-exclusive-benefits__detailed-benefits-section {
    background-color: #1a1a1a;
}

.page-promotions-vip-exclusive-benefits__benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    background-color: #000000;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.page-promotions-vip-exclusive-benefits__benefit-item:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
}

.page-promotions-vip-exclusive-benefits__benefit-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-right: 25px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-promotions-vip-exclusive-benefits__benefit-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions-vip-exclusive-benefits__benefit-item p {
    color: #b0b0b0;
    font-size: 1em;
}

.page-promotions-vip-exclusive-benefits__how-to-join-section {
    background-color: #000000;
    text-align: center;
}

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

.page-promotions-vip-exclusive-benefits__step-item {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
    padding-top: 60px;
}

.page-promotions-vip-exclusive-benefits__step-item:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
}

.page-promotions-vip-exclusive-benefits__step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFD700;
    color: #000000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    border: 3px solid #000000;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.page-promotions-vip-exclusive-benefits__step-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-vip-exclusive-benefits__step-item p {
    color: #b0b0b0;
    font-size: 1em;
}

.page-promotions-vip-exclusive-benefits__step-item p a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions-vip-exclusive-benefits__step-item p a:hover {
    text-decoration: underline;
}

.page-promotions-vip-exclusive-benefits__cta-banner {
    background-color: #333333;
    border-radius: 8px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
    border: 1px solid #555;
}

.page-promotions-vip-exclusive-benefits__cta-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    filter: blur(3px);
}

.page-promotions-vip-exclusive-benefits__cta-banner-content {
    position: relative;
    z-index: 1;
}

.page-promotions-vip-exclusive-benefits__cta-banner-title {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-vip-exclusive-benefits__cta-banner p {
    font-size: 1.1em;
    color: #cccccc;
    margin-bottom: 30px;
}

.page-promotions-vip-exclusive-benefits__faq-section {
    background-color: #1a1a1a;
}

.page-promotions-vip-exclusive-benefits__faq-item {
    background-color: #000000;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid #333;
}

.page-promotions-vip-exclusive-benefits__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-top: 0;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

.page-promotions-vip-exclusive-benefits__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-promotions-vip-exclusive-benefits__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-promotions-vip-exclusive-benefits__faq-answer {
    color: #b0b0b0;
    font-size: 1em;
    padding-top: 10px;
    border-top: 1px solid #333;
    margin-top: 15px;
    display: none;
}

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

.page-promotions-vip-exclusive-benefits__final-cta-section {
    background-color: #000000;
    text-align: center;
    padding: 80px 0;
    border-top: 2px solid #FFD700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-promotions-vip-exclusive-benefits__hero-title {
        font-size: 2.5em;
    }

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

    .page-promotions-vip-exclusive-benefits__benefit-item {
        flex-direction: column;
        text-align: center;
    }

    .page-promotions-vip-exclusive-benefits__benefit-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .page-promotions-vip-exclusive-benefits__cta-banner-title {
        font-size: 1.8em;
    }

    .page-promotions-vip-exclusive-benefits__hero-section,
    .page-promotions-vip-exclusive-benefits__intro-section,
    .page-promotions-vip-exclusive-benefits__vip-tiers-section,
    .page-promotions-vip-exclusive-benefits__detailed-benefits-section,
    .page-promotions-vip-exclusive-benefits__how-to-join-section,
    .page-promotions-vip-exclusive-benefits__faq-section,
    .page-promotions-vip-exclusive-benefits__final-cta-section {
        padding: 40px 0;
    }
}

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

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

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

    .page-promotions-vip-exclusive-benefits__cta-button {
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-promotions-vip-exclusive-benefits__cta-button--large {
        padding: 15px 25px;
        font-size: 1.1em;
    }

    .page-promotions-vip-exclusive-benefits__features-grid,
    .page-promotions-vip-exclusive-benefits__tiers-grid,
    .page-promotions-vip-exclusive-benefits__steps-grid {
        grid-template-columns: 1fr;
    }

    .page-promotions-vip-exclusive-benefits__step-item {
        padding-top: 50px;
    }

    .page-promotions-vip-exclusive-benefits__step-number {
        width: 40px;
        height: 40px;
        font-size: 1.5em;
        top: -15px;
    }

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