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

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

.page-promotions-weekly-cashback__hero-section {
    background: linear-gradient(135deg, #007BFF, #4da3ff); /* Primary blue with a lighter variant */
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-weekly-cashback__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_pattern,gaming,light_effect]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-promotions-weekly-cashback__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
    z-index: 1;
    color: #fff;
}

.page-promotions-weekly-cashback__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    color: #e0e0e0;
}

.page-promotions-weekly-cashback__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 1;
    font-size: 1.1em;
    border: none;
    cursor: pointer;
}

.page-promotions-weekly-cashback__btn--primary {
    background-color: #FFC107; /* Auxiliary color */
    color: #333;
}

.page-promotions-weekly-cashback__btn--primary:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
}

.page-promotions-weekly-cashback__btn--secondary {
    background-color: #007BFF; /* Primary blue */
    color: #fff;
    margin-left: 20px;
    border: 2px solid #007BFF;
}

.page-promotions-weekly-cashback__btn--secondary:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

.page-promotions-weekly-cashback__btn--tertiary {
    background-color: transparent;
    color: #007BFF;
    border: 2px solid #007BFF;
}

.page-promotions-weekly-cashback__btn--tertiary:hover {
    background-color: #007BFF;
    color: #fff;
    transform: translateY(-3px);
}

.page-promotions-weekly-cashback__content-section {
    padding: 60px 0;
}

.page-promotions-weekly-cashback__section--intro {
    background-color: #fff;
}

.page-promotions-weekly-cashback__section--how-it-works {
    background-color: #f1f1f1;
}

.page-promotions-weekly-cashback__section--eligibility {
    background-color: #fff;
}

.page-promotions-weekly-cashback__section--tips {
    background-color: #f1f1f1;
}

.page-promotions-weekly-cashback__section--faq {
    background-color: #fff;
}

.page-promotions-weekly-cashback__section-title {
    font-size: 2.5em;
    color: #007BFF;
    margin-bottom: 40px;
    text-align: center;
    font-weight: bold;
    position: relative;
}

.page-promotions-weekly-cashback__section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: #FFC107;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    border-radius: 2px;
}

.page-promotions-weekly-cashback__subtitle {
    font-size: 1.8em;
    color: #007BFF;
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
}

.page-promotions-weekly-cashback__formula {
    font-size: 1.5em;
    font-weight: bold;
    color: #FFC107;
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background-color: #007BFF;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-weekly-cashback__grid-2-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-promotions-weekly-cashback__card {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.page-promotions-weekly-cashback__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions-weekly-cashback__card-title {
    font-size: 1.5em;
    color: #007BFF;
    margin-bottom: 15px;
}

.page-promotions-weekly-cashback__list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.page-promotions-weekly-cashback__list li {
    background-color: #e9f7ff;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 5px solid #007BFF;
    border-radius: 5px;
    font-size: 1.1em;
    color: #333;
}

.page-promotions-weekly-cashback__list--icon li {
    background-color: transparent;
    border-left: none;
    padding-left: 0;
    display: flex;
    align-items: flex-start;
}

.page-promotions-weekly-cashback__list-icon {
    color: #FFC107;
    font-size: 1.5em;
    margin-right: 15px;
    line-height: 1;
}

.page-promotions-weekly-cashback__image--full-width {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions-weekly-cashback__image--right {
    float: right;
    margin-left: 30px;
    margin-bottom: 20px;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions-weekly-cashback__faq-item {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-promotions-weekly-cashback__faq-question {
    font-size: 1.3em;
    color: #007BFF;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-promotions-weekly-cashback__faq-question::after {
    content: '+';
    font-size: 1.2em;
    color: #FFC107;
    transition: transform 0.3s ease;
}

.page-promotions-weekly-cashback__faq-item.active .page-promotions-weekly-cashback__faq-question::after {
    transform: rotate(45deg);
}

.page-promotions-weekly-cashback__faq-answer {
    font-size: 1em;
    color: #555;
    padding-top: 10px;
    border-top: 1px dashed #e9ecef;
    display: none;
}

.page-promotions-weekly-cashback__faq-item.active .page-promotions-weekly-cashback__faq-answer {
    display: block;
}

.page-promotions-weekly-cashback__cta-section {
    background: linear-gradient(45deg, #0056b3, #007BFF);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    margin-top: 60px;
}

.page-promotions-weekly-cashback__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFC107;
}

.page-promotions-weekly-cashback__cta-description {
    font-size: 1.3em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #e0e0e0;
}

.page-promotions-weekly-cashback__cta-buttons .page-promotions-weekly-cashback__btn {
    margin: 0 10px;
}

.page-promotions-weekly-cashback__responsible-gambling {
    background-color: #e9f7ff;
    padding: 60px 0;
    text-align: center;
    margin-top: 60px;
    border-top: 5px solid #FFC107;
}

.page-promotions-weekly-cashback__responsible-gambling .page-promotions-weekly-cashback__section-title {
    color: #0056b3;
}

.page-promotions-weekly-cashback__responsible-gambling p {
    max-width: 900px;
    margin: 0 auto 30px auto;
    color: #444;
    font-size: 1.1em;
}

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

    .page-promotions-weekly-cashback__hero-description {
        font-size: 1em;
    }

    .page-promotions-weekly-cashback__section-title {
        font-size: 2em;
    }

    .page-promotions-weekly-cashback__subtitle {
        font-size: 1.5em;
    }

    .page-promotions-weekly-cashback__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-promotions-weekly-cashback__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }

    .page-promotions-weekly-cashback__grid-2-cols {
        grid-template-columns: 1fr;
    }

    .page-promotions-weekly-cashback__image--right {
        float: none;
        margin: 30px auto;
        max-width: 100%;
    }

    .page-promotions-weekly-cashback__cta-title {
        font-size: 2.2em;
    }

    .page-promotions-weekly-cashback__cta-description {
        font-size: 1.1em;
    }

    .page-promotions-weekly-cashback__cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .page-promotions-weekly-cashback__cta-buttons .page-promotions-weekly-cashback__btn {
        margin: 0;
    }
}

@media (max-width: 480px) {
    .page-promotions-weekly-cashback__hero-section {
        padding: 60px 0;
    }

    .page-promotions-weekly-cashback__hero-title {
        font-size: 2em;
    }

    .page-promotions-weekly-cashback__section-title {
        font-size: 1.8em;
    }

    .page-promotions-weekly-cashback__formula {
        font-size: 1.2em;
        padding: 15px;
    }
}