/* style/promotions-weekly-cashback.css */

/* Custom Colors */
:root {
    --cm888-card-bg: #11271B;
    --cm888-background: #08160F;
    --cm888-text-main: #F2FFF6;
    --cm888-text-secondary: #A7D9B8;
    --cm888-border: #2E7A4E;
    --cm888-glow: #57E38D;
    --cm888-gold: #F2C14E;
    --cm888-divider: #1E3A2A;
    --cm888-deep-green: #0A4B2C;
    --cm888-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --cm888-primary-color: #11A84E; /* Main brand color */
    --cm888-secondary-color: #22C768; /* Auxiliary brand color */
}

/* Base styles for the page content */
.page-promotions-weekly-cashback {
    font-family: 'Arial', sans-serif;
    background-color: var(--cm888-background); /* Dark background */
    color: var(--cm888-text-main); /* Light text for dark background */
    line-height: 1.6;
}

/* Sections */
.page-promotions-weekly-cashback__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 60px; /* Space for content below image */
    padding-top: 10px; /* Small top padding, body handles header offset */
    box-sizing: border-box;
}

.page-promotions-weekly-cashback__hero-image-wrapper {
    width: 100%;
    overflow: hidden;
}

.page-promotions-weekly-cashback__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-promotions-weekly-cashback__hero-content {
    max-width: 900px;
    width: 100%;
    margin-top: 40px;
    text-align: center;
    padding: 0 20px;
    box-sizing: border-box;
    color: var(--cm888-text-main);
}

.page-promotions-weekly-cashback__main-title {
    font-size: clamp(2em, 4vw, 3em); /* Responsive font size for H1 */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--cm888-text-main);
}

.page-promotions-weekly-cashback__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: var(--cm888-text-secondary);
}

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

.page-promotions-weekly-cashback__section-title {
    font-size: 2.2em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--cm888-text-main);
    padding-top: 40px;
}

.page-promotions-weekly-cashback__text-block {
    font-size: 1.05em;
    margin-bottom: 30px;
    text-align: justify;
    color: var(--cm888-text-secondary);
}

.page-promotions-weekly-cashback__image-content {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Intro Section */
.page-promotions-weekly-cashback__intro-section {
    padding: 60px 0;
    background-color: var(--cm888-background);
}

/* How It Works Section */
.page-promotions-weekly-cashback__how-it-works {
    padding: 60px 0;
    background-color: var(--cm888-card-bg); /* Slightly lighter dark background for contrast */
}

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

.page-promotions-weekly-cashback__feature-card {
    background-color: var(--cm888-deep-green); /* Darker green for cards */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    border: 1px solid var(--cm888-border);
}

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

.page-promotions-weekly-cashback__card-title {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--cm888-text-main);
}

.page-promotions-weekly-cashback__card-description {
    color: var(--cm888-text-secondary);
}

/* Benefits Section */
.page-promotions-weekly-cashback__benefits-section {
    padding: 60px 0;
    background-color: var(--cm888-background);
}

.page-promotions-weekly-cashback__benefits-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-promotions-weekly-cashback__benefit-item {
    background-color: var(--cm888-deep-green);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    flex: 1 1 calc(33% - 40px); /* 3 items per row on desktop */
    max-width: calc(33% - 40px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--cm888-border);
}

.page-promotions-weekly-cashback__benefit-icon {
    width: 100%; /* Ensure large images */
    height: auto;
    max-width: 250px; /* Example max size for icons within cards */
    margin-bottom: 20px;
    border-radius: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-weekly-cashback__benefit-title {
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--cm888-text-main);
}

.page-promotions-weekly-cashback__benefit-description {
    color: var(--cm888-text-secondary);
}

/* Terms Section */
.page-promotions-weekly-cashback__terms-section {
    padding: 60px 0;
    background-color: var(--cm888-card-bg);
}

.page-promotions-weekly-cashback__terms-list {
    list-style: disc;
    padding-left: 25px;
    margin-top: 30px;
    margin-bottom: 40px;
    color: var(--cm888-text-secondary);
}

.page-promotions-weekly-cashback__term-item {
    margin-bottom: 10px;
}

.page-promotions-weekly-cashback__read-more-terms {
    display: inline-block;
    margin-top: 20px;
}

/* FAQ Section */
.page-promotions-weekly-cashback__faq-section {
    padding: 60px 0;
    background-color: var(--cm888-background);
}

.page-promotions-weekly-cashback__faq-list {
    margin-top: 40px;
}

.page-promotions-weekly-cashback__faq-item {
    background-color: var(--cm888-deep-green);
    border: 1px solid var(--cm888-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-promotions-weekly-cashback__faq-item summary {
    list-style: none; /* Remove default marker */
}

.page-promotions-weekly-cashback__faq-item summary::-webkit-details-marker {
    display: none; /* Remove default marker for Webkit browsers */
}

.page-promotions-weekly-cashback__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: 600;
    color: var(--cm888-text-main);
    cursor: pointer;
    background-color: var(--cm888-deep-green);
    border-bottom: 1px solid var(--cm888-divider);
}

.page-promotions-weekly-cashback__faq-item[open] .page-promotions-weekly-cashback__faq-question {
    border-bottom: 1px solid var(--cm888-divider);
}

.page-promotions-weekly-cashback__faq-qtext {
    flex-grow: 1;
}

.page-promotions-weekly-cashback__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: var(--cm888-glow);
    transition: transform 0.3s ease;
}

.page-promotions-weekly-cashback__faq-item[open] .page-promotions-weekly-cashback__faq-toggle {
    transform: rotate(45deg); /* Rotate '+' to 'x' or just change to '-' */
}

.page-promotions-weekly-cashback__faq-answer {
    padding: 20px 25px;
    font-size: 1em;
    color: var(--cm888-text-secondary);
    background-color: var(--cm888-card-bg);
}

/* CTA Banner */
.page-promotions-weekly-cashback__cta-banner {
    padding: 80px 0;
    text-align: center;
    background-color: var(--cm888-deep-green);
    border-top: 2px solid var(--cm888-border);
    border-bottom: 2px solid var(--cm888-border);
    margin-top: 60px;
}

.page-promotions-weekly-cashback__cta-content {
    max-width: 800px;
}

.page-promotions-weekly-cashback__cta-title {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--cm888-gold); /* Gold for emphasis */
}

.page-promotions-weekly-cashback__cta-description {
    font-size: 1.1em;
    margin-bottom: 40px;
    color: var(--cm888-text-main);
}

/* Buttons */
.page-promotions-weekly-cashback__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Ensure buttons wrap on smaller screens */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-promotions-weekly-cashback__btn-primary,
.page-promotions-weekly-cashback__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Allow long words to break */
    box-sizing: border-box;
    max-width: 100%; /* Ensure button doesn't overflow */
    min-width: 180px;
}

.page-promotions-weekly-cashback__btn-primary {
    background: var(--cm888-btn-gradient);
    color: #ffffff;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-weekly-cashback__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    opacity: 0.9;
}

.page-promotions-weekly-cashback__btn-secondary {
    background-color: transparent;
    color: var(--cm888-glow);
    border: 2px solid var(--cm888-glow);
}

.page-promotions-weekly-cashback__btn-secondary:hover {
    background-color: var(--cm888-glow);
    color: var(--cm888-deep-green);
    transform: translateY(-3px);
}

/* General image styling to ensure responsiveness */
.page-promotions-weekly-cashback img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-promotions-weekly-cashback__hero-content {
        margin-top: 30px;
    }
    .page-promotions-weekly-cashback__main-title {
        font-size: clamp(1.8em, 5vw, 2.5em);
    }
    .page-promotions-weekly-cashback__section-title {
        font-size: 2em;
    }
    .page-promotions-weekly-cashback__benefit-item {
        flex: 1 1 calc(50% - 30px); /* 2 items per row on tablet */
        max-width: calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .page-promotions-weekly-cashback__hero-section {
        padding-bottom: 40px;
        padding-top: 10px !important; /* body handles --header-offset, small top padding */
    }
    .page-promotions-weekly-cashback__hero-content {
        margin-top: 20px;
        padding: 0 15px;
    }
    .page-promotions-weekly-cashback__main-title {
        font-size: clamp(1.6em, 6vw, 2.2em);
        margin-bottom: 15px;
    }
    .page-promotions-weekly-cashback__hero-description {
        font-size: 1em;
        margin-bottom: 25px;
    }
    .page-promotions-weekly-cashback__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
        padding-top: 30px;
    }
    .page-promotions-weekly-cashback__text-block {
        font-size: 0.95em;
    }
    .page-promotions-weekly-cashback__features-grid,
    .page-promotions-weekly-cashback__benefits-list {
        gap: 20px;
    }
    .page-promotions-weekly-cashback__benefit-item {
        flex: 1 1 100%; /* 1 item per row on mobile */
        max-width: 100%;
    }
    .page-promotions-weekly-cashback__feature-card,
    .page-promotions-weekly-cashback__benefit-item,
    .page-promotions-weekly-cashback__faq-item {
        padding: 20px;
    }
    .page-promotions-weekly-cashback__card-title,
    .page-promotions-weekly-cashback__benefit-title {
        font-size: 1.3em;
    }
    .page-promotions-weekly-cashback__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-promotions-weekly-cashback__faq-answer {
        padding: 15px 20px;
    }
    .page-promotions-weekly-cashback__cta-banner {
        padding: 50px 0;
        margin-top: 40px;
    }
    .page-promotions-weekly-cashback__cta-title {
        font-size: 2em;
        margin-bottom: 15px;
    }
    .page-promotions-weekly-cashback__cta-description {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .page-promotions-weekly-cashback__btn-primary,
    .page-promotions-weekly-cashback__btn-secondary {
        width: 100% !important; /* Force full width on mobile */
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        white-space: normal !important;
        word-wrap: break-word !important;
        box-sizing: border-box !important;
    }
    .page-promotions-weekly-cashback__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
        padding: 0 15px; /* Add padding to container */
    }
    
    /* Mobile image and container responsiveness */
    .page-promotions-weekly-cashback img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-promotions-weekly-cashback__section,
    .page-promotions-weekly-cashback__card,
    .page-promotions-weekly-cashback__container,
    .page-promotions-weekly-cashback__hero-section,
    .page-promotions-weekly-cashback__intro-section,
    .page-promotions-weekly-cashback__how-it-works,
    .page-promotions-weekly-cashback__benefits-section,
    .page-promotions-weekly-cashback__terms-section,
    .page-promotions-weekly-cashback__faq-section,
    .page-promotions-weekly-cashback__cta-banner {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
}

/* Ensure contrast for dark sections */
.page-promotions-weekly-cashback__dark-section {
    background-color: var(--cm888-background);
    color: var(--cm888-text-main);
}

.page-promotions-weekly-cashback__light-bg {
    background-color: var(--cm888-card-bg);
    color: var(--cm888-text-main);
}

/* Ensure content area text is readable */
.page-promotions-weekly-cashback__content-area p,
.page-promotions-weekly-cashback__content-area li {
    color: var(--cm888-text-secondary);
}