/* style/promotions-vip-loyalty-program.css */

/* Base styles for the VIP Loyalty Program page */
.page-promotions-vip-loyalty-program {
    font-family: 'Arial', sans-serif;
    color: #1A2E44; /* Dark blue/gray for main text */
    line-height: 1.6;
    background-color: #f8f9fa;
}

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

.page-promotions-vip-loyalty-program__section-title {
    font-size: 2.5em;
    color: #1A2E44;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.page-promotions-vip-loyalty-program__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #E7C200;
    border-radius: 2px;
}

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

.page-promotions-vip-loyalty-program__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.page-promotions-vip-loyalty-program__button--primary {
    background-color: #E7C200;
    color: #1A2E44;
    border: 2px solid #E7C200;
}

.page-promotions-vip-loyalty-program__button--primary:hover {
    background-color: #d1b000;
    border-color: #d1b000;
    color: #1A2E44;
}

.page-promotions-vip-loyalty-program__button--secondary {
    background-color: transparent;
    color: #E7C200;
    border: 2px solid #E7C200;
}

.page-promotions-vip-loyalty-program__button--secondary:hover {
    background-color: #E7C200;
    color: #1A2E44;
}

.page-promotions-vip-loyalty-program__button--inline {
    padding: 8px 15px;
    font-size: 0.9em;
}

/* Hero Section */
.page-promotions-vip-loyalty-program__hero-section {
    background: linear-gradient(135deg, #1A2E44, #3a5b81);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
}

.page-promotions-vip-loyalty-program__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #E7C200;
    line-height: 1.2;
}

.page-promotions-vip-loyalty-program__hero-subtitle {
    font-size: 1.3em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    opacity: 0.9;
}

.page-promotions-vip-loyalty-program__hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Benefits Overview Section */
.page-promotions-vip-loyalty-program__benefits-overview {
    padding: 80px 0;
    background-color: #ffffff;
}

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

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

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

.page-promotions-vip-loyalty-program__benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.1));
}

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

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

/* VIP Levels Section */
.page-promotions-vip-loyalty-program__vip-levels {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.page-promotions-vip-loyalty-program__level-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 5px solid #E7C200;
}

.page-promotions-vip-loyalty-program__level-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-promotions-vip-loyalty-program__level-title {
    font-size: 1.8em;
    color: #1A2E44;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.page-promotions-vip-loyalty-program__level-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #E7C200;
    border-radius: 2px;
}

.page-promotions-vip-loyalty-program__level-description {
    color: #666;
    font-size: 1em;
    margin-bottom: 25px;
}

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

.page-promotions-vip-loyalty-program__level-benefits-list li {
    margin-bottom: 10px;
    color: #444;
    position: relative;
    padding-left: 25px;
}

.page-promotions-vip-loyalty-program__level-benefits-list li::before {
    content: '✓';
    color: #E7C200;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* How to Join Section */
.page-promotions-vip-loyalty-program__how-to-join {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.page-promotions-vip-loyalty-program__step-item {
    text-align: center;
    padding: 40px 20px;
    border-radius: 10px;
    background-color: #f0f2f5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-promotions-vip-loyalty-program__step-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.1));
}

.page-promotions-vip-loyalty-program__step-title {
    font-size: 1.6em;
    color: #1A2E44;
    margin-bottom: 15px;
}

.page-promotions-vip-loyalty-program__step-text {
    color: #555;
    font-size: 1em;
    margin-bottom: 25px;
}

.page-promotions-vip-loyalty-program__note {
    text-align: center;
    font-style: italic;
    color: #777;
    margin-top: 50px;
    font-size: 0.95em;
}

/* Terms and Conditions Section */
.page-promotions-vip-loyalty-program__terms-conditions {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.page-promotions-vip-loyalty-program__terms-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 50px auto 30px auto;
}

.page-promotions-vip-loyalty-program__terms-list li {
    background-color: #ffffff;
    margin-bottom: 15px;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    color: #444;
    line-height: 1.7;
    position: relative;
    padding-left: 45px;
}

.page-promotions-vip-loyalty-program__terms-list li::before {
    content: '▪';
    color: #E7C200;
    font-size: 1.5em;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.page-promotions-vip-loyalty-program__responsible-gaming {
    text-align: center;
    font-style: italic;
    color: #777;
    margin-top: 40px;
    font-size: 0.95em;
    border-top: 1px dashed #ddd;
    padding-top: 20px;
}

/* FAQ Section */
.page-promotions-vip-loyalty-program__faq {
    padding: 80px 0;
    background-color: #ffffff;
}

.page-promotions-vip-loyalty-program__faq-item {
    background-color: #f0f2f5;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: background-color 0.3s ease;
}

.page-promotions-vip-loyalty-program__faq-item:hover {
    background-color: #e6e8eb;
}

.page-promotions-vip-loyalty-program__faq-question {
    font-size: 1.3em;
    color: #1A2E44;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-promotions-vip-loyalty-program__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #E7C200;
    transition: transform 0.3s ease;
}

.page-promotions-vip-loyalty-program__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-promotions-vip-loyalty-program__faq-answer {
    color: #555;
    font-size: 1em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding-top: 0;
}

.page-promotions-vip-loyalty-program__faq-answer.active {
    max-height: 200px; /* Adjust as needed for content length */
    padding-top: 15px;
}

/* Final CTA Section */
.page-promotions-vip-loyalty-program__cta-final {
    padding: 80px 0;
    background: linear-gradient(135deg, #1A2E44, #3a5b81);
    color: #ffffff;
    text-align: center;
}

.page-promotions-vip-loyalty-program__cta-final .page-promotions-vip-loyalty-program__section-title {
    color: #E7C200;
}

.page-promotions-vip-loyalty-program__cta-final .page-promotions-vip-loyalty-program__section-description {
    color: #ffffff;
    opacity: 0.9;
}

.page-promotions-vip-loyalty-program__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-vip-loyalty-program__hero-title {
        font-size: 2.8em;
    }
    .page-promotions-vip-loyalty-program__section-title {
        font-size: 2em;
    }
    .page-promotions-vip-loyalty-program__benefits-grid,
    .page-promotions-vip-loyalty-program__level-card-grid,
    .page-promotions-vip-loyalty-program__steps-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .page-promotions-vip-loyalty-program__hero-section,
    .page-promotions-vip-loyalty-program__benefits-overview,
    .page-promotions-vip-loyalty-program__vip-levels,
    .page-promotions-vip-loyalty-program__how-to-join,
    .page-promotions-vip-loyalty-program__terms-conditions,
    .page-promotions-vip-loyalty-program__faq,
    .page-promotions-vip-loyalty-program__cta-final {
        padding: 60px 0;
    }
    .page-promotions-vip-loyalty-program__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-vip-loyalty-program__hero-subtitle {
        font-size: 1.1em;
    }
    .page-promotions-vip-loyalty-program__section-title {
        font-size: 1.8em;
    }
    .page-promotions-vip-loyalty-program__hero-cta-group,
    .page-promotions-vip-loyalty-program__cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-promotions-vip-loyalty-program__button {
        width: 80%;
        margin: 0 auto;
    }
    .page-promotions-vip-loyalty-program__benefits-grid,
    .page-promotions-vip-loyalty-program__level-card-grid,
    .page-promotions-vip-loyalty-program__steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-promotions-vip-loyalty-program__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-vip-loyalty-program__section-title {
        font-size: 1.5em;
    }
    .page-promotions-vip-loyalty-program__hero-subtitle,
    .page-promotions-vip-loyalty-program__section-description {
        font-size: 1em;
    }
    .page-promotions-vip-loyalty-program__button {
        width: 95%;
        padding: 10px 20px;
    }
    .page-promotions-vip-loyalty-program__faq-question {
        font-size: 1.1em;
    }
    .page-promotions-vip-loyalty-program__faq-answer {
        font-size: 0.9em;
    }
}