/* style/promotions-daily-rebate.css */
.page-promotions-daily-rebate {
    font-family: 'Arial', sans-serif;
    color: #f0e5d4; /* Light text for dark background */
    background-color: #0F1A2B; /* Main dark background */
    line-height: 1.6;
}

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

.page-promotions-daily-rebate__hero {
    background: linear-gradient(135deg, #0F1A2B, #2a3a4c);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-daily-rebate__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: page-promotions-daily-rebate__hero-glow 15s infinite alternate;
    z-index: 0;
}

@keyframes page-promotions-daily-rebate__hero-glow {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0.7; }
}

.page-promotions-daily-rebate__hero > div {
    position: relative;
    z-index: 1;
}

.page-promotions-daily-rebate__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Accent color for title */
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    font-weight: bold;
}

.page-promotions-daily-rebate__subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #f0e5d4;
}

.page-promotions-daily-rebate__actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

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

.page-promotions-daily-rebate__button.primary-button {
    background-color: #FFD700; /* Accent color */
    color: #0F1A2B; /* Dark text for accent background */
    border: 2px solid #FFD700;
}

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

.page-promotions-daily-rebate__button.secondary-button {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-promotions-daily-rebate__button.secondary-button:hover {
    background-color: #FFD700;
    color: #0F1A2B;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

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

.page-promotions-daily-rebate__section:last-of-type {
    border-bottom: none;
}

.page-promotions-daily-rebate__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

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

.page-promotions-daily-rebate__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #d4d4d4;
    text-align: justify;
}

.page-promotions-daily-rebate__list,
.page-promotions-daily-rebate__ordered-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-promotions-daily-rebate__list li,
.page-promotions-daily-rebate__ordered-list li {
    background-color: #1a2c3f;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    border-left: 5px solid #FFD700;
    font-size: 1.05em;
    color: #f0e5d4;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-promotions-daily-rebate__list li strong,
.page-promotions-daily-rebate__ordered-list li strong {
    color: #FFD700;
}

.page-promotions-daily-rebate__image {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 40px auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

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

.page-promotions-daily-rebate__grid-item {
    background-color: #1a2c3f;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-daily-rebate__grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.page-promotions-daily-rebate__grid-item h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-top: 20px;
    margin-bottom: 15px;
}

.page-promotions-daily-rebate__grid-item p {
    color: #d4d4d4;
    font-size: 1em;
}

.page-promotions-daily-rebate__icon {
    width: 70px;
    height: 70px;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

.page-promotions-daily-rebate__faq-item {
    background-color: #1a2c3f;
    margin-bottom: 15px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-promotions-daily-rebate__faq-item h3 {
    color: #FFD700;
    font-size: 1.3em;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-promotions-daily-rebate__faq-item p {
    color: #d4d4d4;
    font-size: 1em;
    margin-top: 10px;
    display: none;
}

.page-promotions-daily-rebate__faq-item.active p {
    display: block;
}

.page-promotions-daily-rebate__faq-item h3::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-promotions-daily-rebate__faq-item.active h3::after {
    content: '-';
    transform: rotate(180deg);
}

.page-promotions-daily-rebate__cta {
    text-align: center;
    background: linear-gradient(90deg, #0F1A2B, #334455);
    padding: 80px 0;
    border-radius: 10px;
    margin: 60px auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.page-promotions-daily-rebate__cta .page-promotions-daily-rebate__section-title {
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-promotions-daily-rebate__cta .page-promotions-daily-rebate__section-title::after {
    background-color: #FFD700;
}

.page-promotions-daily-rebate__cta .page-promotions-daily-rebate__text {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #f0e5d4;
}

.page-promotions-daily-rebate .highlight {
    color: #FFD700;
    font-weight: bold;
}

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

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

    .page-promotions-daily-rebate__actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-promotions-daily-rebate__button {
        min-width: unset;
        width: 100%;
    }

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

    .page-promotions-daily-rebate__grid {
        grid-template-columns: 1fr;
    }

    .page-promotions-daily-rebate__list li,
    .page-promotions-daily-rebate__ordered-list li {
        padding: 15px;
    }
}

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

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

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

    .page-promotions-daily-rebate__section {
        padding: 40px 0;
    }

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

    .page-promotions-daily-rebate__text {
        font-size: 0.95em;
    }

    .page-promotions-daily-rebate__grid-item h3 {
        font-size: 1.3em;
    }

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

    .page-promotions-daily-rebate__faq-item h3 {
        font-size: 1.1em;
    }
}