/* style/promotions-daily-cashback.css */
.page-promotions-daily-cashback {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Default text color for dark background */
    background-color: #0d1a26; /* Darker background for depth */
    line-height: 1.6;
}

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

.page-promotions-daily-cashback__hero {
    background: linear-gradient(135deg, #003366 0%, #001a33 100%); /* Dark blue gradient */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

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

.page-promotions-daily-cashback__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    z-index: 1;
}

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

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

.page-promotions-daily-cashback__subtitle {
    font-size: 1.4em;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-daily-cashback__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    margin: 10px;
    min-width: 200px;
    text-align: center;
}

.page-promotions-daily-cashback__btn--primary {
    background-color: #FFCC00; /* Gold button */
    color: #003366; /* Dark blue text */
    border: 2px solid #FFCC00;
}

.page-promotions-daily-cashback__btn--primary:hover {
    background-color: #e6b800;
    border-color: #e6b800;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4);
}

.page-promotions-daily-cashback__btn--secondary {
    background-color: transparent;
    color: #FFCC00; /* Gold text */
    border: 2px solid #FFCC00;
}

.page-promotions-daily-cashback__btn--secondary:hover {
    background-color: #FFCC00;
    color: #003366;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4);
}

.page-promotions-daily-cashback__section {
    padding: 80px 0;
    text-align: center;
}

.page-promotions-daily-cashback__section:nth-of-type(even) {
    background-color: #002244; /* Slightly lighter dark blue for alternating sections */
}

.page-promotions-daily-cashback__section-title {
    font-size: 2.8em;
    color: #FFCC00;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-promotions-daily-cashback__section-description {
    font-size: 1.1em;
    color: #cccccc;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-promotions-daily-cashback__benefit-item,
.page-promotions-daily-cashback__step-item,
.page-promotions-daily-cashback__detail-card {
    background-color: #003366; /* Main dark blue for cards */
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.page-promotions-daily-cashback__benefit-item:hover,
.page-promotions-daily-cashback__detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions-daily-cashback__benefit-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFCC00);
}

.page-promotions-daily-cashback__benefit-title,
.page-promotions-daily-cashback__detail-title {
    font-size: 1.8em;
    color: #FFCC00;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-daily-cashback__benefit-text {
    font-size: 1em;
    color: #b0b0b0;
}

.page-promotions-daily-cashback__step-number {
    background-color: #FFCC00;
    color: #003366;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(255, 204, 0, 0.4);
}

.page-promotions-daily-cashback__step-title {
    font-size: 1.6em;
    color: #FFCC00;
    margin-bottom: 10px;
}

.page-promotions-daily-cashback__step-text {
    font-size: 1em;
    color: #b0b0b0;
}

.page-promotions-daily-cashback__inline-link {
    color: #FFCC00;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-promotions-daily-cashback__inline-link:hover {
    color: #e6b800;
    text-decoration: underline;
}

.page-promotions-daily-cashback__process-image {
    max-width: 100%;
    height: auto;
    margin-top: 60px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-promotions-daily-cashback__detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    color: #b0b0b0;
}

.page-promotions-daily-cashback__detail-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 1em;
}

.page-promotions-daily-cashback__detail-list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #FFCC00;
    font-size: 1.2em;
    top: 0;
}

.page-promotions-daily-cashback__note {
    font-style: italic;
    color: #999999;
    margin-top: 20px;
    font-size: 0.9em;
}

.page-promotions-daily-cashback__chart-image {
    max-width: 100%;
    height: auto;
    margin-top: 60px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-promotions-daily-cashback__cta-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.page-promotions-daily-cashback__faq-list {
    margin-top: 40px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-daily-cashback__faq-item {
    background-color: #003366;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-promotions-daily-cashback__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFCC00;
    transition: transform 0.3s ease;
}

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

.page-promotions-daily-cashback__faq-answer {
    font-size: 1em;
    color: #cccccc;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding-top: 0;
}

.page-promotions-daily-cashback__faq-answer.active {
    max-height: 200px; /* Adjust based on expected content length */
    padding-top: 15px;
}

.highlight-text {
    color: #FFCC00;
}

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

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

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

    .page-promotions-daily-cashback__hero {
        padding: 80px 0;
    }

    .page-promotions-daily-cashback__section {
        padding: 60px 0;
    }

    .page-promotions-daily-cashback__benefits-grid,
    .page-promotions-daily-cashback__steps-grid,
    .page-promotions-daily-cashback__details-grid {
        grid-template-columns: 1fr;
    }

    .page-promotions-daily-cashback__btn {
        min-width: unset;
        width: 100%;
        margin: 10px 0;
    }

    .page-promotions-daily-cashback__cta-buttons {
        flex-direction: column;
    }
}

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

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

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

    .page-promotions-daily-cashback__btn {
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-promotions-daily-cashback__benefit-icon {
        width: 60px;
        height: 60px;
    }

    .page-promotions-daily-cashback__benefit-title,
    .page-promotions-daily-cashback__detail-title {
        font-size: 1.5em;
    }

    .page-promotions-daily-cashback__step-number {
        width: 40px;
        height: 40px;
        font-size: 1.5em;
    }

    .page-promotions-daily-cashback__step-title {
        font-size: 1.4em;
    }

    .page-promotions-daily-cashback__faq-question {
        font-size: 1.1em;
    }
}