/* style/promotions-vip-program.css */
.page-promotions-vip-program {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

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

.page-promotions-vip-program__hero-section {
    background: linear-gradient(135deg, #FFD700, #000080);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-vip-program__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,luxury_pattern,gold_blue]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-promotions-vip-program__hero-section .page-promotions-vip-program__container {
    position: relative;
    z-index: 1;
}

.page-promotions-vip-program__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-promotions-vip-program__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-promotions-vip-program__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #000080;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-vip-program__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-promotions-vip-program__section-title {
    font-size: 2.8em;
    color: #000080;
    text-align: center;
    margin-bottom: 30px;
    padding-top: 40px;
    position: relative;
}

.page-promotions-vip-program__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-promotions-vip-program__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    color: #555;
}

.page-promotions-vip-program__intro-section {
    padding: 60px 0;
    background-color: #fff;
}

.page-promotions-vip-program__content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.page-promotions-vip-program__content-wrapper p {
    flex: 1;
    min-width: 300px;
    font-size: 1.1em;
    color: #444;
}

.page-promotions-vip-program__image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions-vip-program__levels-section {
    background-color: #f0f4f8;
    padding: 60px 0;
}

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

.page-promotions-vip-program__level-card {
    background-color: #000080;
    color: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.page-promotions-vip-program__level-card::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    background-color: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    transform: rotate(45deg);
    z-index: 0;
}

.page-promotions-vip-program__level-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.page-promotions-vip-program__level-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

.page-promotions-vip-program__level-title {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-promotions-vip-program__level-req {
    font-size: 0.95em;
    margin-bottom: 20px;
    color: #ccc;
}

.page-promotions-vip-program__level-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.page-promotions-vip-program__level-benefits li {
    margin-bottom: 10px;
    font-size: 1em;
    padding-left: 25px;
    position: relative;
    color: #e0e0e0;
}

.page-promotions-vip-program__level-benefits li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #FFD700;
}

.page-promotions-vip-program__level-cta {
    display: inline-block;
    background-color: #FFD700;
    color: #000080;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promotions-vip-program__level-cta:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-promotions-vip-program__note {
    text-align: center;
    margin-top: 40px;
    font-style: italic;
    color: #777;
}

.page-promotions-vip-program__benefits-overview-section {
    padding: 60px 0;
    background-color: #fff;
}

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

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

.page-promotions-vip-program__benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-promotions-vip-program__benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    color: #000080;
}

.page-promotions-vip-program__benefit-title {
    font-size: 1.5em;
    color: #000080;
    margin-bottom: 15px;
}

.page-promotions-vip-program__benefit-card p {
    font-size: 1em;
    color: #555;
}

.page-promotions-vip-program__how-to-join-section {
    padding: 60px 0;
    background-color: #f0f4f8;
}

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

.page-promotions-vip-program__steps-list li {
    background-color: #fff;
    margin-bottom: 20px;
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    padding-left: 70px;
    font-size: 1.1em;
    color: #444;
}

.page-promotions-vip-program__steps-list li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #000080;
    color: #FFD700;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5em;
}

.page-promotions-vip-program__steps-list li strong {
    color: #000080;
}

.page-promotions-vip-program__steps-list li a {
    color: #000080;
    text-decoration: underline;
    font-weight: bold;
}

.page-promotions-vip-program__cta-block {
    text-align: center;
    background-color: #000080;
    color: #fff;
    padding: 50px;
    border-radius: 15px;
    margin-top: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-promotions-vip-program__cta-block p {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: #FFD700;
    line-height: 1.4;
}

.page-promotions-vip-program__cta-button--large {
    padding: 18px 40px;
    font-size: 1.3em;
}

.page-promotions-vip-program__faq-section {
    padding: 60px 0;
    background-color: #fff;
}

.page-promotions-vip-program__faq-item {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-promotions-vip-program__faq-question {
    font-size: 1.3em;
    color: #000080;
    margin-bottom: 10px;
}

.page-promotions-vip-program__faq-answer {
    font-size: 1em;
    color: #555;
}

.page-promotions-vip-program__responsible-gaming-section {
    background-color: #000080;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-promotions-vip-program__responsible-gaming-section .page-promotions-vip-program__section-title {
    color: #FFD700;
}

.page-promotions-vip-program__responsible-gaming-section .page-promotions-vip-program__section-title::after {
    background-color: #FFD700;
}

.page-promotions-vip-program__responsible-gaming-section .page-promotions-vip-program__section-description {
    color: #e0e0e0;
    margin-bottom: 40px;
}

.page-promotions-vip-program__cta-button--secondary {
    background-color: #FFD700;
    color: #000080;
}

.page-promotions-vip-program__cta-button--secondary:hover {
    background-color: #e6c200;
}

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

    .page-promotions-vip-program__hero-subtitle {
        font-size: 1.2em;
    }

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

    .page-promotions-vip-program__content-wrapper {
        flex-direction: column;
    }

    .page-promotions-vip-program__image {
        max-width: 100%;
    }

    .page-promotions-vip-program__level-grid {
        grid-template-columns: 1fr;
    }

    .page-promotions-vip-program__benefits-grid {
        grid-template-columns: 1fr;
    }

    .page-promotions-vip-program__cta-block p {
        font-size: 1.2em;
    }

    .page-promotions-vip-program__cta-button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

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

    .page-promotions-vip-program__hero-subtitle {
        font-size: 1em;
    }

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

    .page-promotions-vip-program__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-promotions-vip-program__level-card,
    .page-promotions-vip-program__benefit-card,
    .page-promotions-vip-program__faq-item,
    .page-promotions-vip-program__steps-list li {
        padding: 20px;
    }

    .page-promotions-vip-program__steps-list li::before {
        width: 35px;
        height: 35px;
        font-size: 1.3em;
        left: 15px;
    }

    .page-promotions-vip-program__steps-list li {
        padding-left: 60px;
    }
}