/* style/promotions-daily-cashback.css */

.page-promotions-daily-cashback {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light text for dark background */
    background-color: #0A2E36; /* Main dark background */
}

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

.page-promotions-daily-cashback .hero-section {
    background: linear-gradient(135deg, #0A2E36 0%, #1A4D59 100%); /* Dark blue gradient */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700;
}

.page-promotions-daily-cashback .hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold accent */
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
    line-height: 1.2;
}

.page-promotions-daily-cashback .hero-subtitle {
    font-size: 1.4em;
    color: #E0E0E0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-daily-cashback .hero-image {
    max-width: 600px;
    height: auto;
    margin-top: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.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;
    cursor: pointer;
}

.page-promotions-daily-cashback .btn-primary {
    background-color: #FFD700; /* Gold */
    color: #0A2E36; /* Dark blue */
    border: 2px solid #FFD700;
}

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

.page-promotions-daily-cashback .btn-secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    margin-left: 20px;
}

.page-promotions-daily-cashback .btn-secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 215, 0, 0.2);
}

.page-promotions-daily-cashback .section-content {
    padding: 60px 0;
    background-color: #1A3D44; /* Slightly lighter dark blue */
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-daily-cashback .section-content:nth-of-type(even) {
    background-color: #0A2E36;
}

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

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

.page-promotions-daily-cashback p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-promotions-daily-cashback strong {
    color: #FFD700;
}

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

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

.page-promotions-daily-cashback .benefit-item:hover {
    transform: translateY(-10px);
}

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

.page-promotions-daily-cashback .benefit-item p {
    color: #C0C0C0;
    font-size: 1em;
    line-height: 1.6;
}

.page-promotions-daily-cashback .benefit-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

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

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

.page-promotions-daily-cashback .process-list li {
    background-color: #1A3D44;
    border-left: 5px solid #FFD700;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-daily-cashback .process-list li h3 {
    color: #FFD700;
    font-size: 1.6em;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-promotions-daily-cashback .process-list li p {
    color: #C0C0C0;
    font-size: 1.05em;
}

.page-promotions-daily-cashback .example-text {
    background-color: #0A2E36;
    padding: 20px;
    border-left: 4px solid #FFD700;
    margin-top: 30px;
    font-style: italic;
    color: #E0E0E0;
    border-radius: 8px;
}

.page-promotions-daily-cashback .rules-list {
    list-style: disc inside;
    padding-left: 20px;
    margin-top: 30px;
}

.page-promotions-daily-cashback .rules-list li {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #E0E0E0;
    line-height: 1.6;
}

.page-promotions-daily-cashback .rules-list li strong {
    color: #FFD700;
}

.page-promotions-daily-cashback .cta-buttons {
    text-align: center;
    margin-top: 50px;
}

.page-promotions-daily-cashback .section-why-123win .why-list {
    list-style: none;
    padding: 0;
}

.page-promotions-daily-cashback .section-why-123win .why-list li {
    background-color: #0A2E36;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border-left: 4px solid #FFD700;
    font-size: 1.1em;
    line-height: 1.6;
    color: #E0E0E0;
}

.page-promotions-daily-cashback .section-why-123win .why-list li strong {
    color: #FFD700;
    display: block;
    margin-bottom: 5px;
    font-size: 1.2em;
}

.page-promotions-daily-cashback .section-responsible-gambling .responsible-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.page-promotions-daily-cashback .section-responsible-gambling .responsible-list li {
    background-color: #0A2E36;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border-bottom: 3px solid #FFD700;
    color: #E0E0E0;
    font-size: 1em;
    text-align: center;
}

.page-promotions-daily-cashback .section-faq .faq-item {
    background-color: #0A2E36;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border-left: 4px solid #FFD700;
}

.page-promotions-daily-cashback .section-faq .faq-item h3 {
    color: #FFD700;
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 15px;
    cursor: pointer;
    position: relative;
}

.page-promotions-daily-cashback .section-faq .faq-item p {
    color: #C0C0C0;
    font-size: 1em;
    line-height: 1.6;
    display: block; /* Ensure it's always visible for this example */
}

.page-promotions-daily-cashback .final-cta-section {
    background: linear-gradient(90deg, #0A2E36, #FFD700);
    padding: 80px 0;
    text-align: center;
    border-top: 5px solid #FFD700;
    border-bottom: 5px solid #FFD700;
    margin-top: 40px;
}

.page-promotions-daily-cashback .final-cta-title {
    font-size: 3em;
    color: #0A2E36;
    margin-bottom: 20px;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.page-promotions-daily-cashback .final-cta-description {
    font-size: 1.3em;
    color: #2c2c2c;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-daily-cashback .btn-large {
    padding: 18px 40px;
    font-size: 1.3em;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-promotions-daily-cashback .hero-title {
        font-size: 2.8em;
    }
    .page-promotions-daily-cashback .hero-subtitle {
        font-size: 1.2em;
    }
    .page-promotions-daily-cashback .section-title {
        font-size: 2em;
    }
    .page-promotions-daily-cashback .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-promotions-daily-cashback .final-cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-promotions-daily-cashback .hero-section {
        padding: 80px 0;
    }
    .page-promotions-daily-cashback .hero-title {
        font-size: 2.2em;
    }
    .page-promotions-daily-cashback .hero-subtitle {
        font-size: 1em;
    }
    .page-promotions-daily-cashback .btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-daily-cashback .btn-secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    .page-promotions-daily-cashback .section-content {
        padding: 40px 0;
    }
    .page-promotions-daily-cashback .section-title {
        font-size: 1.8em;
    }
    .page-promotions-daily-cashback p, .page-promotions-daily-cashback .rules-list li, .page-promotions-daily-cashback .section-why-123win .why-list li, .page-promotions-daily-cashback .section-faq .faq-item p {
        font-size: 0.95em;
    }
    .page-promotions-daily-cashback .final-cta-title {
        font-size: 2em;
    }
    .page-promotions-daily-cashback .final-cta-description {
        font-size: 1.1em;
    }
    .page-promotions-daily-cashback .btn-large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-promotions-daily-cashback .hero-title {
        font-size: 1.8em;
    }
    .page-promotions-daily-cashback .hero-subtitle {
        font-size: 0.9em;
    }
    .page-promotions-daily-cashback .btn-primary, .page-promotions-daily-cashback .btn-secondary {
        display: block;
        width: 90%;
        margin: 10px auto;
    }
    .page-promotions-daily-cashback .section-title {
        font-size: 1.5em;
    }
    .page-promotions-daily-cashback .benefits-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-daily-cashback .final-cta-title {
        font-size: 1.8em;
    }
}