/* style/promotions-cashback.css */

:root {
    --mcw-primary-dark: #0A192F;
    --mcw-secondary-gold: #FFD700;
    --mcw-text-light: #F0F0F0;
    --mcw-text-dark: #1A1A1A;
    --mcw-background-light: #F5F5F5;
    --mcw-border-color: rgba(255, 255, 255, 0.1);
}

.page-promotions-cashback {
    font-family: 'Arial', sans-serif;
    color: var(--mcw-text-light);
    background-color: var(--mcw-primary-dark);
    line-height: 1.6;
}

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

.page-promotions-cashback__hero {
    background: linear-gradient(135deg, var(--mcw-primary-dark) 0%, #1A2E4B 100%);
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-cashback__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: page-promotions-cashback__hero-pulse 10s infinite alternate;
}

@keyframes page-promotions-cashback__hero-pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0.8; }
}

.page-promotions-cashback__hero-content {
    z-index: 1;
    max-width: 800px;
    margin-bottom: 40px;
}

.page-promotions-cashback__hero-title {
    font-size: 3.5em;
    color: var(--mcw-secondary-gold);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-cashback__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: var(--mcw-text-light);
}

.page-promotions-cashback__hero-image-wrapper {
    z-index: 1;
    width: 100%;
    max-width: 900px;
    margin-top: 40px;
}

.page-promotions-cashback__hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}

.page-promotions-cashback__hero-image:hover {
    transform: translateY(-5px);
}

.page-promotions-cashback__section-title {
    font-size: 2.5em;
    color: var(--mcw-secondary-gold);
    text-align: center;
    margin: 60px 0 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-promotions-cashback__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--mcw-secondary-gold);
    border-radius: 2px;
}

.page-promotions-cashback__intro, .page-promotions-cashback__cashback-types, .page-promotions-cashback__bonuses, .page-promotions-cashback__how-to, .page-promotions-cashback__terms, .page-promotions-cashback__why-choose, .page-promotions-cashback__contact {
    padding: 60px 0;
}

.page-promotions-cashback__intro p, .page-promotions-cashback__terms p {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 20px auto;
    color: var(--mcw-text-light);
}

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

.page-promotions-cashback__feature-item, .page-promotions-cashback__bonus-item {
    background-color: #1A2E4B;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border: 1px solid var(--mcw-border-color);
}

.page-promotions-cashback__feature-item:hover, .page-promotions-cashback__bonus-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.page-promotions-cashback__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px var(--mcw-secondary-gold));
}

.page-promotions-cashback__feature-title, .page-promotions-cashback__bonus-title, .page-promotions-cashback__step-title {
    font-size: 1.8em;
    color: var(--mcw-secondary-gold);
    margin-bottom: 15px;
}

.page-promotions-cashback__feature-item p, .page-promotions-cashback__bonus-item p {
    color: var(--mcw-text-light);
    font-size: 1em;
    margin-bottom: 15px;
}

.page-promotions-cashback__feature-item ul, .page-promotions-cashback__bonus-item ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    text-align: left;
    color: var(--mcw-text-light);
}

.page-promotions-cashback__feature-item ul li, .page-promotions-cashback__bonus-item ul li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.page-promotions-cashback__feature-item ul li::before, .page-promotions-cashback__bonus-item ul li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: var(--mcw-secondary-gold);
}

.page-promotions-cashback__bonus-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.page-promotions-cashback__cta-button, .page-promotions-cashback__bonus-cta {
    display: inline-block;
    background-color: var(--mcw-secondary-gold);
    color: var(--mcw-primary-dark);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.page-promotions-cashback__cta-button:hover, .page-promotions-cashback__bonus-cta:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-promotions-cashback__cta-button--secondary {
    background-color: transparent;
    border: 2px solid var(--mcw-secondary-gold);
    color: var(--mcw-secondary-gold);
    box-shadow: none;
}

.page-promotions-cashback__cta-button--secondary:hover {
    background-color: var(--mcw-secondary-gold);
    color: var(--mcw-primary-dark);
}

.page-promotions-cashback__cta-button--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

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

.page-promotions-cashback__step-item {
    background-color: #1A2E4B;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 1px solid var(--mcw-border-color);
}

.page-promotions-cashback__step-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 4px var(--mcw-secondary-gold));
}

.page-promotions-cashback__step-item p {
    color: var(--mcw-text-light);
    font-size: 1em;
    margin-bottom: 15px;
}

.page-promotions-cashback__terms ul {
    list-style: none;
    max-width: 900px;
    margin: 40px auto 0;
    padding: 0;
}

.page-promotions-cashback__terms ul li {
    background-color: #1A2E4B;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 10px;
    color: var(--mcw-text-light);
    position: relative;
    padding-left: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-promotions-cashback__terms ul li::before {
    content: '➡️';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--mcw-secondary-gold);
}

.page-promotions-cashback__why-choose-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-promotions-cashback__why-choose-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-cashback__why-choose-text ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-promotions-cashback__why-choose-text ul li {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
    color: var(--mcw-text-light);
}

.page-promotions-cashback__why-choose-text ul li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--mcw-secondary-gold);
}

.page-promotions-cashback__contact p {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 20px auto;
    color: var(--mcw-text-light);
}

/* Responsive Design */
@media (min-width: 768px) {
    .page-promotions-cashback__hero {
        flex-direction: row;
        text-align: left;
        padding: 100px 0;
    }

    .page-promotions-cashback__hero-content {
        text-align: left;
        max-width: 50%;
        margin-bottom: 0;
        padding-left: 20px;
    }

    .page-promotions-cashback__hero-image-wrapper {
        max-width: 45%;
        margin-top: 0;
        padding-right: 20px;
    }

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

    .page-promotions-cashback__intro p, .page-promotions-cashback__terms p, .page-promotions-cashback__contact p {
        font-size: 1.2em;
    }

    .page-promotions-cashback__why-choose-content {
        flex-direction: row;
        text-align: left;
    }

    .page-promotions-cashback__why-choose-image {
        max-width: 45%;
    }

    .page-promotions-cashback__why-choose-text {
        max-width: 50%;
    }
}

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

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

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

    .page-promotions-cashback__feature-item, .page-promotions-cashback__bonus-item, .page-promotions-cashback__step-item {
        padding: 20px;
    }

    .page-promotions-cashback__feature-title, .page-promotions-cashback__bonus-title, .page-promotions-cashback__step-title {
        font-size: 1.5em;
    }

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