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

.page-promotions-daily-rebate {
    font-family: Arial, sans-serif;
    color: var(--text-main);
    background-color: var(--background-main);
    line-height: 1.6;
}

.page-promotions-daily-rebate a {
    color: var(--glow-color);
    text-decoration: none;
}

.page-promotions-daily-rebate a:hover {
    text-decoration: underline;
}

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

.page-promotions-daily-rebate__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0 60px 0; /* body handles padding-top from header */
    background-color: var(--deep-green);
    overflow: hidden;
}

.page-promotions-daily-rebate__hero-image-wrapper {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.page-promotions-daily-rebate__hero-content {
    text-align: center;
    padding: 30px 15px;
    max-width: 900px;
    margin-top: -100px; /* Overlap slightly for visual effect, but not text on image */
    background-color: rgba(8, 22, 15, 0.9); /* Semi-transparent background for text readability */
    border-radius: 10px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.page-promotions-daily-rebate__main-title {
    font-size: clamp(2em, 4vw, 3em);
    color: var(--gold-color);
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
}

.page-promotions-daily-rebate__subtitle {
    font-size: 1.1em;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.page-promotions-daily-rebate__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--button-gradient);
    color: #ffffff;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-daily-rebate__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

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

.page-promotions-daily-rebate__section-title {
    font-size: 2.2em;
    color: var(--glow-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-promotions-daily-rebate__intro-section,
.page-promotions-daily-rebate__guide-section,
.page-promotions-daily-rebate__benefits-section,
.page-promotions-daily-rebate__conclusion-section {
    padding: 60px 0;
}

.page-promotions-daily-rebate__intro-section p,
.page-promotions-daily-rebate__terms-section p,
.page-promotions-daily-rebate__conclusion-section p {
    font-size: 1.05em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-promotions-daily-rebate__dark-bg {
    background-color: var(--deep-green);
    color: var(--text-main);
}

.page-promotions-daily-rebate__types-section {
    padding: 60px 0;
    background-color: var(--background-main);
}

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

.page-promotions-daily-rebate__card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-promotions-daily-rebate__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-daily-rebate__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.page-promotions-daily-rebate__card-title {
    font-size: 1.4em;
    color: var(--gold-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-daily-rebate__card p {
    color: var(--text-secondary);
    font-size: 0.95em;
    margin-bottom: 20px;
    flex-grow: 1;
    text-align: left;
}

.page-promotions-daily-rebate__note {
    text-align: center;
    margin-top: 40px;
    font-size: 1em;
    color: var(--text-secondary);
}

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

.page-promotions-daily-rebate__step-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-promotions-daily-rebate__step-icon {
    width: 60px;
    height: 60px;
    background: var(--button-gradient);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page-promotions-daily-rebate__step-title {
    font-size: 1.5em;
    color: var(--gold-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-daily-rebate__step-item p {
    color: var(--text-secondary);
    font-size: 1em;
    text-align: center;
}

.page-promotions-daily-rebate__important-note {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1em;
    color: var(--text-main);
    padding: 20px;
    background-color: var(--deep-green);
    border: 1px dashed var(--glow-color);
    border-radius: 8px;
}

.page-promotions-daily-rebate__guide-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 40px auto 0 auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions-daily-rebate__terms-section {
    padding: 60px 0;
    background-color: var(--background-main);
}

.page-promotions-daily-rebate__terms-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-promotions-daily-rebate__terms-list li {
    background-color: var(--card-bg);
    border: 1px solid var(--divider-color);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    font-size: 1em;
    color: var(--text-secondary);
    line-height: 1.8;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-promotions-daily-rebate__terms-list li strong {
    color: var(--text-main);
}

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

.page-promotions-daily-rebate__benefit-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-daily-rebate__benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-daily-rebate__benefit-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.page-promotions-daily-rebate__benefit-title {
    font-size: 1.4em;
    color: var(--gold-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-daily-rebate__benefit-item p {
    color: var(--text-secondary);
    font-size: 0.95em;
    text-align: center;
}

.page-promotions-daily-rebate__faq-section {
    padding: 60px 0;
    background-color: var(--background-main);
}

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

.page-promotions-daily-rebate__faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-promotions-daily-rebate__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.1em;
    color: var(--text-main);
    cursor: pointer;
    background-color: var(--deep-green);
    border-bottom: 1px solid var(--divider-color);
    transition: background-color 0.3s ease;
    list-style: none; /* For details/summary */
}

.page-promotions-daily-rebate__faq-question::-webkit-details-marker {
    display: none; /* For details/summary */
}

.page-promotions-daily-rebate__faq-question:hover {
    background-color: var(--primary-color);
}

.page-promotions-daily-rebate__faq-qtext {
    flex-grow: 1;
    font-weight: bold;
}

.page-promotions-daily-rebate__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    margin-left: 15px;
    color: var(--glow-color);
}

.page-promotions-daily-rebate__faq-answer {
    padding: 20px;
    font-size: 1em;
    color: var(--text-secondary);
    background-color: var(--card-bg);
    border-top: none;
}

.page-promotions-daily-rebate__conclusion-section {
    text-align: center;
}

.page-promotions-daily-rebate__conclusion-section .page-promotions-daily-rebate__cta-button {
    margin-top: 30px;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-promotions-daily-rebate__hero-content {
        margin-top: -80px;
    }
    .page-promotions-daily-rebate__main-title {
        font-size: clamp(1.8em, 4.5vw, 2.5em);
    }
    .page-promotions-daily-rebate__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-promotions-daily-rebate__hero-section {
        padding: 10px 0 40px 0;
    }
    .page-promotions-daily-rebate__hero-content {
        margin-top: -60px;
        padding: 20px 10px;
    }
    .page-promotions-daily-rebate__main-title {
        font-size: clamp(1.5em, 5vw, 2.2em);
    }
    .page-promotions-daily-rebate__subtitle {
        font-size: 1em;
    }
    .page-promotions-daily-rebate__cta-button {
        padding: 12px 25px;
        font-size: 0.9em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-promotions-daily-rebate__cta-button--small {
        padding: 8px 15px;
        font-size: 0.85em;
    }

    .page-promotions-daily-rebate__intro-section,
    .page-promotions-daily-rebate__types-section,
    .page-promotions-daily-rebate__guide-section,
    .page-promotions-daily-rebate__terms-section,
    .page-promotions-daily-rebate__benefits-section,
    .page-promotions-daily-rebate__faq-section,
    .page-promotions-daily-rebate__conclusion-section {
        padding: 40px 0;
    }
    .page-promotions-daily-rebate__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-promotions-daily-rebate img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-promotions-daily-rebate__hero-image {
        height: 300px;
    }
    .page-promotions-daily-rebate__card-image,
    .page-promotions-daily-rebate__benefit-image {
        height: 150px;
    }
    
    .page-promotions-daily-rebate__container,
    .page-promotions-daily-rebate__hero-section,
    .page-promotions-daily-rebate__intro-section,
    .page-promotions-daily-rebate__types-section,
    .page-promotions-daily-rebate__guide-section,
    .page-promotions-daily-rebate__terms-section,
    .page-promotions-daily-rebate__benefits-section,
    .page-promotions-daily-rebate__faq-section,
    .page-promotions-daily-rebate__conclusion-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }

    .page-promotions-daily-rebate__rebate-cards,
    .page-promotions-daily-rebate__guide-steps,
    .page-promotions-daily-rebate__benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-promotions-daily-rebate__card,
    .page-promotions-daily-rebate__step-item,
    .page-promotions-daily-rebate__benefit-item {
        padding: 20px;
    }
    .page-promotions-daily-rebate__step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
    }
    .page-promotions-daily-rebate__faq-question {
        padding: 15px;
        font-size: 1em;
    }
    .page-promotions-daily-rebate__faq-toggle {
        font-size: 1.2em;
    }
    .page-promotions-daily-rebate__faq-answer {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .page-promotions-daily-rebate__hero-content {
        margin-top: -40px;
        padding: 15px 10px;
    }
    .page-promotions-daily-rebate__main-title {
        font-size: clamp(1.2em, 6vw, 1.8em);
    }
    .page-promotions-daily-rebate__section-title {
        font-size: 1.5em;
    }
    .page-promotions-daily-rebate__intro-section p,
    .page-promotions-daily-rebate__terms-section p,
    .page-promotions-daily-rebate__conclusion-section p,
    .page-promotions-daily-rebate__terms-list li,
    .page-promotions-daily-rebate__step-item p,
    .page-promotions-daily-rebate__benefit-item p,
    .page-promotions-daily-rebate__faq-answer {
        font-size: 0.9em;
    }
    .page-promotions-daily-rebate__card-title,
    .page-promotions-daily-rebate__step-title,
    .page-promotions-daily-rebate__benefit-title {
        font-size: 1.2em;
    }
}