/* style/promotions-cashback.css */

/* General Styles */
.page-promotions-cashback {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for readability on dark backgrounds */
    background-color: #1a1a1a; /* Dark background */
    line-height: 1.6;
}

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

.page-promotions-cashback__section-title {
    font-size: 2.8em;
    color: #FF0055; /* Primary color for titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.page-promotions-cashback__sub-title {
    font-size: 1.8em;
    color: #00FFEE; /* Secondary color for sub-titles */
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-cashback__intro-text {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 30px;
    color: #B0B0B0;
}

.page-promotions-cashback__text-block p {
    margin-bottom: 1em;
    color: #E0E0E0;
}

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

.page-promotions-cashback__list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #E0E0E0;
}

.page-promotions-cashback__list li::before {
    content: '•';
    color: #00FFEE; /* Secondary color for list bullets */
    position: absolute;
    left: 0;
    font-size: 1.2em;
    line-height: 1;
}

.page-promotions-cashback__list--conditions li::before {
    color: #FF0055; /* Primary color for conditions list bullets */
}

.page-promotions-cashback__list--tips li::before {
    content: '⚡'; /* Use a lightning bolt for tips */
    color: #00FFEE;
}

.page-promotions-cashback__numbered-list {
    list-style: none;
    counter-reset: my-awesome-counter;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-promotions-cashback__numbered-list li {
    counter-increment: my-awesome-counter;
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    color: #E0E0E0;
}

.page-promotions-cashback__numbered-list li::before {
    content: counter(my-awesome-counter) '.';
    color: #FF0055; /* Primary color for numbered list */
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.1em;
}

.page-promotions-cashback__formula {
    background-color: #2a2a2a;
    border-left: 4px solid #00FFEE;
    padding: 15px 20px;
    margin: 20px 0;
    font-family: 'Courier New', monospace;
    font-size: 1.1em;
    color: #E0E0E0;
    text-align: center;
}

.page-promotions-cashback__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1em;
    cursor: pointer;
}

.page-promotions-cashback__btn--primary {
    background-color: #FF0055; /* Primary color */
    color: #FFFFFF;
    border: 2px solid #FF0055;
}

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

.page-promotions-cashback__btn--secondary {
    background-color: transparent;
    color: #00FFEE; /* Secondary color */
    border: 2px solid #00FFEE;
}

.page-promotions-cashback__btn--secondary:hover {
    background-color: #00FFEE;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.page-promotions-cashback__cta-center {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

/* Hero Section */
.page-promotions-cashback__hero-section {
    background: linear-gradient(135deg, #FF0055, #00FFEE); /* Gradient with brand colors */
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

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

.page-promotions-cashback__hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 255, 238, 0.3) 0%, transparent 70%);
    animation: glow2 12s infinite alternate;
}

@keyframes glow1 {
    from { transform: translate(0, 0) scale(1); opacity: 0.8; }
    to { transform: translate(50px, 50px) scale(1.2); opacity: 0.6; }
}

@keyframes glow2 {
    from { transform: translate(0, 0) scale(1); opacity: 0.7; }
    to { transform: translate(-60px, -60px) scale(1.1); opacity: 0.5; }
}

.page-promotions-cashback__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 900;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

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

.page-promotions-cashback__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Content Sections */
.page-promotions-cashback__content-section {
    padding: 60px 0;
}

.page-promotions-cashback__section--dark {
    background-color: #222222;
}

.page-promotions-cashback__grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-promotions-cashback__image-wrapper {
    text-align: center;
}

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

/* FAQ Section */
.page-promotions-cashback__faq-section {
    padding: 60px 0;
    background-color: #1a1a1a;
}

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

.page-promotions-cashback__faq-question {
    font-size: 1.3em;
    color: #00FFEE; /* Secondary color for FAQ questions */
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.page-promotions-cashback__faq-answer {
    font-size: 1em;
    color: #B0B0B0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 15px;
}

.page-promotions-cashback__faq-answer.active {
    max-height: 200px; /* Adjust as needed for content */
    padding: 15px;
}

/* 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: 2.2em;
    }
    .page-promotions-cashback__grid-2-cols {
        grid-template-columns: 1fr;
    }
    .page-promotions-cashback__image-wrapper {
        order: -1; /* Image appears above text on mobile */
        margin-bottom: 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__cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-promotions-cashback__btn {
        width: 100%;
        box-sizing: border-box;
    }
    .page-promotions-cashback__section-title {
        font-size: 1.8em;
    }
    .page-promotions-cashback__sub-title {
        font-size: 1.5em;
    }
    .page-promotions-cashback__hero-section {
        padding: 60px 0;
    }
}

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