/* style/promotions-cashback.css */

.page-promotions-cashback {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

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

.page-promotions-cashback__container--centered {
    text-align: center;
}

.page-promotions-cashback__hero-section {
    background: linear-gradient(135deg, #0A6847 0%, #0A6847 60%, #FFD700 100%);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-cashback__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:cockfighting,stadium,crowd]') no-repeat center center/cover;
    opacity: 0.15;
    z-index: 1;
}

.page-promotions-cashback__hero-section > .page-promotions-cashback__container {
    position: relative;
    z-index: 2;
}

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

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

.page-promotions-cashback__section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.page-promotions-cashback__section:last-of-type {
    border-bottom: none;
}

.page-promotions-cashback__section-title {
    font-size: 2.5em;
    color: #0A6847;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-promotions-cashback__sub-title {
    font-size: 1.8em;
    color: #0A6847;
    margin-top: 30px;
    margin-bottom: 20px;
}

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

.page-promotions-cashback__content-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.page-promotions-cashback__content-wrapper--reverse {
    flex-direction: row-reverse;
}

.page-promotions-cashback__text-content {
    flex: 1;
}

.page-promotions-cashback__text-content p {
    margin-bottom: 15px;
    font-size: 1.05em;
    color: #444;
}

.page-promotions-cashback__image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-promotions-cashback__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-cashback__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #444;
}

.page-promotions-cashback__list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-promotions-cashback__list li strong {
    color: #0A6847;
}

.page-promotions-cashback__list--styled {
    list-style: none;
    padding: 0;
    margin-left: 0;
}

.page-promotions-cashback__list--styled li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.page-promotions-cashback__list--styled li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #0A6847;
    font-size: 1.2em;
    line-height: 1;
}

.page-promotions-cashback__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.page-promotions-cashback__btn--primary {
    background-color: #FFD700;
    color: #0A6847;
}

.page-promotions-cashback__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-promotions-cashback__btn--secondary {
    background-color: #0A6847;
    color: #ffffff;
    border: 2px solid #0A6847;
}

.page-promotions-cashback__btn--secondary:hover {
    background-color: #074a32;
    transform: translateY(-2px);
}

.page-promotions-cashback__btn--large {
    padding: 15px 35px;
    font-size: 1.25em;
    margin-top: 30px;
}

.page-promotions-cashback__btn--xl {
    padding: 18px 40px;
    font-size: 1.4em;
    margin-top: 40px;
    width: auto;
    max-width: 350px;
}

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

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

.page-promotions-cashback__grid-item:hover {
    transform: translateY(-5px);
}

.page-promotions-cashback__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.page-promotions-cashback__grid-title {
    font-size: 1.5em;
    color: #0A6847;
    margin-bottom: 15px;
}

.page-promotions-cashback__grid-item p {
    color: #555;
    font-size: 1em;
}

.page-promotions-cashback__steps-list {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    max-width: 800px;
    margin: 0 auto 50px auto;
    text-align: left;
}

.page-promotions-cashback__steps-list li {
    counter-increment: step-counter;
    margin-bottom: 25px;
    position: relative;
    padding-left: 70px;
    font-size: 1.1em;
    color: #444;
}

.page-promotions-cashback__steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background-color: #0A6847;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions-cashback__steps-list li strong {
    color: #0A6847;
    font-size: 1.2em;
}

.page-promotions-cashback__small-text {
    font-size: 0.9em;
    color: #777;
    margin-top: 20px;
}

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

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

.page-promotions-cashback__feature-item:hover {
    transform: translateY(-5px);
}

.page-promotions-cashback__feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.15));
}

.page-promotions-cashback__feature-title {
    font-size: 1.6em;
    color: #0A6847;
    margin-bottom: 15px;
}

.page-promotions-cashback__feature-item p {
    color: #555;
    font-size: 1em;
}

.page-promotions-cashback__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-promotions-cashback__faq-item {
    background-color: #ffffff;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-promotions-cashback__faq-question {
    font-size: 1.3em;
    color: #0A6847;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

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

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

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

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

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-cashback__hero-title {
        font-size: 2.8em;
    }

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

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

    .page-promotions-cashback__content-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .page-promotions-cashback__content-wrapper--reverse {
        flex-direction: column;
    }

    .page-promotions-cashback__image-wrapper {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .page-promotions-cashback__hero-title {
        font-size: 2.2em;
    }

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

    .page-promotions-cashback__section {
        padding: 40px 0;
    }

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

    .page-promotions-cashback__sub-title {
        font-size: 1.5em;
    }

    .page-promotions-cashback__btn--large, .page-promotions-cashback__btn--xl {
        padding: 12px 25px;
        font-size: 1.1em;
        width: 100%;
        max-width: none;
    }

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

    .page-promotions-cashback__steps-list li {
        padding-left: 60px;
        font-size: 1em;
    }

    .page-promotions-cashback__steps-list li::before {
        width: 40px;
        height: 40px;
        font-size: 1.2em;
    }

    .page-promotions-cashback__steps-list li strong {
        font-size: 1.1em;
    }

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

    .page-promotions-cashback__feature-title {
        font-size: 1.4em;
    }

    .page-promotions-cashback__faq-question {
        font-size: 1.1em;
    }

    .page-promotions-cashback__faq-answer {
        font-size: 0.95em;
    }
}

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

    .page-promotions-cashback__hero-subtitle {
        font-size: 0.9em;
    }

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