/* style/promotions-weekly-cashback.css */
.page-promotions-weekly-cashback {
    font-family: 'Arial', sans-serif;
    color: #F8F8F8; /* Light gray for general text on dark background */
    background-color: #0A0F18; /* Main dark background */
    line-height: 1.6;
}

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

.page-promotions-weekly-cashback__hero {
    background: linear-gradient(135deg, #0A0F18 0%, #3a1c02 100%); /* Dark gradient with a hint of gold/brown */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-promotions-weekly-cashback__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.page-promotions-weekly-cashback__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.2;
}

.page-promotions-weekly-cashback__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(5px);
    transform: scale(1.1);
}

.page-promotions-weekly-cashback__title {
    font-size: 3.5em;
    color: #FFD700; /* Gold accent for main title */
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-weekly-cashback__subtitle {
    font-size: 1.5em;
    color: #E0E0E0;
    margin-bottom: 40px;
}

.page-promotions-weekly-cashback__btn {
    display: inline-block;
    padding: 15px 30px;
    margin: 10px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-weekly-cashback__btn--primary {
    background-color: #FFD700; /* Gold for primary action */
    color: #0A0F18; /* Dark text on gold */
}

.page-promotions-weekly-cashback__btn--primary:hover {
    background-color: #E5C100;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-weekly-cashback__btn--secondary {
    background-color: #E53935; /* Red for secondary action/emphasis */
    color: #FFFFFF; /* White text on red */
    border: 1px solid #E53935;
}

.page-promotions-weekly-cashback__btn--secondary:hover {
    background-color: #C62828;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-weekly-cashback__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.page-promotions-weekly-cashback__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #E53935;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-promotions-weekly-cashback__sub-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-promotions-weekly-cashback__text {
    font-size: 1.1em;
    color: #E0E0E0;
    margin-bottom: 20px;
    text-align: justify;
}

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

.page-promotions-weekly-cashback__grid-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-promotions-weekly-cashback__grid-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.08);
}

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

.page-promotions-weekly-cashback__list li {
    background-color: rgba(255, 255, 255, 0.03);
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 5px solid #FFD700;
    border-radius: 5px;
    font-size: 1.1em;
    color: #F8F8F8;
    transition: background-color 0.3s ease;
}

.page-promotions-weekly-cashback__list li:hover {
    background-color: rgba(255, 255, 255, 0.06);
}

.page-promotions-weekly-cashback__list--benefits li {
    border-left-color: #E53935;
}

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

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

.page-promotions-weekly-cashback__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    color: #E53935;
    transition: transform 0.3s ease;
}

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

.page-promotions-weekly-cashback__faq-answer {
    font-size: 1em;
    color: #E0E0E0;
    display: none;
    margin-top: 15px;
    padding-left: 10px;
    border-left: 3px solid #E53935;
}

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

.page-promotions-weekly-cashback__cta {
    text-align: center;
    background-color: #1A1F28; /* Slightly lighter dark background for CTA */
    padding: 80px 0;
}

.page-promotions-weekly-cashback__cta-buttons {
    margin-top: 40px;
}

.page-promotions-weekly-cashback__link-inline {
    color: #FFD700;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-promotions-weekly-cashback__link-inline:hover {
    color: #E5C100;
}

.page-promotions-weekly-cashback__image {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.highlight {
    color: #FFD700;
}

.typhu88-keyword {
    color: #FFD700;
    font-weight: bold;
}

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

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

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

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

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

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

@media (max-width: 480px) {
    .page-promotions-weekly-cashback__title {
        font-size: 2em;
    }

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

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

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

    .page-promotions-weekly-cashback__btn {
        display: block;
        width: calc(100% - 20px);
        margin: 10px auto;
    }
}