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

.page-promotions-daily-cashback {
    background-color: var(--color-background);
    color: var(--color-text-main); /* Default text color for the page */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

/* Hero Section */
.page-promotions-daily-cashback__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Image first, then content */
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 0 60px 0; /* Small top padding, more bottom */
    overflow: hidden;
    background-color: var(--color-deep-green); /* Fallback background */
}

.page-promotions-daily-cashback__hero-image {
    width: 100%;
    height: auto;
    max-height: 600px; /* Limit height for aesthetic */
    object-fit: cover;
    display: block;
    margin-bottom: 30px; /* Space between image and content */
}

.page-promotions-daily-cashback__hero-content {
    max-width: 900px;
    padding: 0 20px;
    z-index: 1;
}

.page-promotions-daily-cashback__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 font size */
    color: var(--color-gold);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.page-promotions-daily-cashback__subtitle {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: 30px;
}

.page-promotions-daily-cashback__cta-button {
    display: inline-block;
    background: var(--color-button-gradient);
    color: var(--color-text-main);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
}

.page-promotions-daily-cashback__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions-daily-cashback__cta-button--centered {
    display: block;
    margin: 40px auto 20px auto;
    max-width: 300px;
}

.page-promotions-daily-cashback__cta-button--large {
    padding: 18px 35px;
    font-size: 1.2rem;
    max-width: 400px;
}

/* Section Titles */
.page-promotions-daily-cashback__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--color-gold);
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
    position: relative;
}

.page-promotions-daily-cashback__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--color-primary);
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-promotions-daily-cashback__section-title--alt {
    color: var(--color-text-main);
}
.page-promotions-daily-cashback__section-title--alt::after {
    background-color: var(--color-gold);
}


/* Text Blocks */
.page-promotions-daily-cashback__text-block {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
    text-align: justify;
}
.page-promotions-daily-cashback__text-block--alt {
    text-align: center;
}

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

.page-promotions-daily-cashback__image-small {
    width: 100%;
    height: auto;
    max-width: 600px;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
}

/* How It Works Section */
.page-promotions-daily-cashback__how-it-works {
    background-color: var(--color-deep-green);
    padding-bottom: 60px;
}

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

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

.page-promotions-daily-cashback__step-title {
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 15px;
}

.page-promotions-daily-cashback__step-description {
    font-size: 1rem;
    color: var(--color-text-secondary);
}

/* Benefits Section */
.page-promotions-daily-cashback__benefits-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-promotions-daily-cashback__list-item {
    font-size: 1.1rem;
    color: var(--color-text-main);
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.page-promotions-daily-cashback__list-item::before {
    content: '✅'; /* Checkmark icon */
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-size: 1.2rem;
}

/* Eligible Games Section */
.page-promotions-daily-cashback__eligible-games-section {
    background-color: var(--color-deep-green);
    padding-bottom: 60px;
}

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

.page-promotions-daily-cashback__game-card {
    background-color: var(--color-card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--color-border);
    transition: transform 0.3s ease;
}

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

.page-promotions-daily-cashback__game-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.page-promotions-daily-cashback__game-image {
    width: 100%;
    height: 180px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-promotions-daily-cashback__game-title {
    font-size: 1.3rem;
    color: var(--color-gold);
    padding: 15px 10px 5px;
    text-align: center;
}

.page-promotions-daily-cashback__game-description {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    padding: 0 15px 20px;
    text-align: center;
}

/* Terms and Conditions Section */
.page-promotions-daily-cashback__terms-section {
    padding-bottom: 60px;
}

.page-promotions-daily-cashback__terms-list {
    list-style: decimal;
    padding-left: 25px;
    margin-bottom: 30px;
    color: var(--color-text-secondary);
}

.page-promotions-daily-cashback__terms-list .page-promotions-daily-cashback__list-item {
    padding-left: 0;
}
.page-promotions-daily-cashback__terms-list .page-promotions-daily-cashback__list-item::before {
    content: none;
}


/* FAQ Section */
.page-promotions-daily-cashback__faq-section {
    background-color: var(--color-deep-green);
    padding-bottom: 60px;
}

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

.page-promotions-daily-cashback__faq-item {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-promotions-daily-cashback__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.2rem;
    color: var(--color-text-main);
    cursor: pointer;
    background-color: var(--color-deep-green); /* Slightly darker for question */
    border-bottom: 1px solid var(--color-divider);
}
.page-promotions-daily-cashback__faq-item[open] .page-promotions-daily-cashback__faq-question {
    border-bottom: 1px solid var(--color-border);
}

.page-promotions-daily-cashback__faq-qtext {
    font-weight: bold;
    color: var(--color-gold);
}

.page-promotions-daily-cashback__faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.page-promotions-daily-cashback__faq-item[open] .page-promotions-daily-cashback__faq-toggle {
    transform: rotate(45deg); /* Change + to X or - */
}

.page-promotions-daily-cashback__faq-answer {
    padding: 15px 25px 25px;
    font-size: 1rem;
    color: var(--color-text-secondary);
}

/* Bottom CTA Section */
.page-promotions-daily-cashback__cta-bottom-section {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--color-background);
}


/* Responsive Design */
@media (max-width: 768px) {
    .page-promotions-daily-cashback__container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-promotions-daily-cashback__hero-section {
        padding: 10px 0 40px 0;
    }

    .page-promotions-daily-cashback__main-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: 15px;
    }

    .page-promotions-daily-cashback__subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .page-promotions-daily-cashback__cta-button {
        padding: 12px 25px;
        font-size: 1rem;
        max-width: 100% !important; /* Force full width for buttons */
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-promotions-daily-cashback__cta-button--centered,
    .page-promotions-daily-cashback__cta-button--large {
        margin-left: auto;
        margin-right: auto;
    }

    .page-promotions-daily-cashback__section-title {
        font-size: clamp(1.8rem, 7vw, 2.2rem);
        margin-bottom: 30px;
        padding-top: 30px;
    }

    .page-promotions-daily-cashback__text-block,
    .page-promotions-daily-cashback__list-item,
    .page-promotions-daily-cashback__step-description,
    .page-promotions-daily-cashback__game-description,
    .page-promotions-daily-cashback__faq-answer p {
        font-size: 0.95rem;
    }

    .page-promotions-daily-cashback__hero-image,
    .page-promotions-daily-cashback__image-content,
    .page-promotions-daily-cashback__image-small,
    .page-promotions-daily-cashback__game-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-promotions-daily-cashback__hero-section,
    .page-promotions-daily-cashback__intro-section,
    .page-promotions-daily-cashback__how-it-works,
    .page-promotions-daily-cashback__benefits-section,
    .page-promotions-daily-cashback__eligible-games-section,
    .page-promotions-daily-cashback__terms-section,
    .page-promotions-daily-cashback__faq-section,
    .page-promotions-daily-cashback__cta-bottom-section,
    .page-promotions-daily-cashback__step-card,
    .page-promotions-daily-cashback__game-card,
    .page-promotions-daily-cashback__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Prevent horizontal scroll */
    }

    .page-promotions-daily-cashback__game-categories {
        grid-template-columns: 1fr; /* Single column on mobile */
    }
    .page-promotions-daily-cashback__steps-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
    }

    .page-promotions-daily-cashback__faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }
    .page-promotions-daily-cashback__faq-qtext {
        font-size: 1rem;
    }
    .page-promotions-daily-cashback__faq-answer {
        padding: 10px 20px 20px;
    }
}