/* style/index-daily-promotions.css */
.page-index-daily-promotions {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

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

.page-index-daily-promotions .hero-section {
    background: linear-gradient(135deg, #0A2463 0%, #0A2463 60%, #E0B143 100%);
    color: #FFFFFF;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-daily-promotions .hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #E0B143;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-index-daily-promotions .hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-index-daily-promotions .btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
}

.page-index-daily-promotions .btn-primary {
    background-color: #E0B143;
    color: #0A2463;
    border: 2px solid #E0B143;
}

.page-index-daily-promotions .btn-primary:hover {
    background-color: #f5c76c;
    transform: translateY(-3px);
}

.page-index-daily-promotions .btn-secondary {
    background-color: #0A2463;
    color: #E0B143;
    border: 2px solid #E0B143;
}

.page-index-daily-promotions .btn-secondary:hover {
    background-color: #1a3a7a;
    transform: translateY(-2px);
}

.page-index-daily-promotions .btn-link {
    color: #0A2463;
    text-decoration: underline;
    padding: 0;
    background: none;
    border: none;
    font-size: 1em;
}

.page-index-daily-promotions .btn-link:hover {
    color: #E0B143;
    text-decoration: none;
}

.page-index-daily-promotions .section-title {
    font-size: 2.5em;
    color: #0A2463;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    padding-top: 40px;
}

.page-index-daily-promotions .section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: #555;
}

.page-index-daily-promotions .promotions-overview-section, 
.page-index-daily-promotions .detailed-promotions-section, 
.page-index-daily-promotions .how-to-claim-section, 
.page-index-daily-promotions .why-choose-888b-promos-section, 
.page-index-daily-promotions .faq-section {
    padding: 60px 0;
    background-color: #ffffff;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-index-daily-promotions .promotions-overview-section {
    padding-bottom: 30px;
}

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

.page-index-daily-promotions .promo-card {
    background-color: #f8f8f8;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-index-daily-promotions .promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.page-index-daily-promotions .card-title {
    font-size: 1.8em;
    color: #0A2463;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index-daily-promotions .card-text {
    font-size: 1em;
    color: #666;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-index-daily-promotions .article-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
}

.page-index-daily-promotions .promotion-article {
    background-color: #fefefe;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.page-index-daily-promotions .promotion-article img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-index-daily-promotions .promotion-article h3 {
    font-size: 2em;
    color: #0A2463;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index-daily-promotions .promotion-article p {
    font-size: 1.05em;
    color: #444;
    margin-bottom: 15px;
}

.page-index-daily-promotions .how-to-claim-section ol.steps-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
    max-width: 800px;
    margin: 40px auto;
}

.page-index-daily-promotions .how-to-claim-section ol.steps-list li {
    counter-increment: step-counter;
    margin-bottom: 20px;
    padding-left: 60px;
    position: relative;
    font-size: 1.1em;
    color: #333;
}

.page-index-daily-promotions .how-to-claim-section ol.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #E0B143;
    color: #0A2463;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.3em;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-index-daily-promotions .how-to-claim-section ol.steps-list li strong {
    color: #0A2463;
}

.page-index-daily-promotions .advantages-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 40px auto;
}

.page-index-daily-promotions .advantages-list li {
    background-color: #e6f0ff; /* Lighter blue variant for list items */
    border-left: 5px solid #0A2463;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 1.05em;
    color: #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-index-daily-promotions .advantages-list li strong {
    color: #0A2463;
}

.page-index-daily-promotions .faq-item {
    background-color: #fefefe;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-index-daily-promotions .faq-question {
    font-size: 1.4em;
    color: #0A2463;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-index-daily-promotions .faq-answer {
    font-size: 1em;
    color: #555;
}

.page-index-daily-promotions .cta-btn {
    margin-top: 30px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (min-width: 768px) {
    .page-index-daily-promotions .promotion-article {
        flex-direction: row;
        text-align: left;
    }

    .page-index-daily-promotions .promotion-article img {
        width: 350px;
        height: auto;
        margin-right: 30px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .page-index-daily-promotions .article-content {
        flex-grow: 1;
    }
}

@media (max-width: 767px) {
    .page-index-daily-promotions .hero-title {
        font-size: 2.5em;
    }

    .page-index-daily-promotions .hero-description {
        font-size: 1em;
    }

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

    .page-index-daily-promotions .section-description {
        font-size: 0.95em;
    }

    .page-index-daily-promotions .promo-card {
        padding: 20px;
    }

    .page-index-daily-promotions .card-title {
        font-size: 1.5em;
    }

    .page-index-daily-promotions .promotion-article {
        padding: 20px;
    }

    .page-index-daily-promotions .promotion-article h3 {
        font-size: 1.5em;
    }

    .page-index-daily-promotions .how-to-claim-section ol.steps-list li {
        padding-left: 50px;
        font-size: 1em;
    }

    .page-index-daily-promotions .how-to-claim-section ol.steps-list li::before {
        width: 35px;
        height: 35px;
        font-size: 1.1em;
    }

    .page-index-daily-promotions .faq-question {
        font-size: 1.2em;
    }

    .page-index-daily-promotions .btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}