/* style/index-latest-promotions.css */
.page-index-latest-promotions {
    font-family: 'Arial', sans-serif;
    color: #f5e6d0; /* Light text for dark background */
    background-color: #0A192F;
    line-height: 1.6;
}

.page-index-latest-promotions-hero {
    background: linear-gradient(135deg, #0A192F, #1e3a6a);
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700;
}

.page-index-latest-promotions-hero-content {
    max-width: 900px;
    z-index: 1;
}

.page-index-latest-promotions-hero h1 {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-latest-promotions-hero p {
    font-size: 1.3em;
    color: #f5e6d0;
    margin-bottom: 30px;
}

.page-index-latest-promotions-hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-index-latest-promotions-hero-image {
    width: 100%;
    max-width: 600px;
    z-index: 0;
    opacity: 0.8;
    margin-top: 40px;
}

.page-index-latest-promotions-image-responsive {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-index-latest-promotions-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-index-latest-promotions-section h2 {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.page-index-latest-promotions-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-index-latest-promotions-section p {
    font-size: 1.1em;
    color: #c0c0c0;
    margin-bottom: 40px;
}

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

.page-index-latest-promotions-promotion-card {
    background-color: #1a2a40;
    border-radius: 15px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #FFD700;
}

.page-index-latest-promotions-promotion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
}

.page-index-latest-promotions-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 215, 0, 0.5);
}

.page-index-latest-promotions-promotion-card h3 {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-index-latest-promotions-promotion-card p {
    font-size: 1em;
    color: #f5e6d0;
    margin-bottom: 20px;
    line-height: 1.7;
}

.page-index-latest-promotions-promotion-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.page-index-latest-promotions-promotion-card ul li {
    color: #c0c0c0;
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

.page-index-latest-promotions-promotion-card ul li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #FFD700;
}

.page-index-latest-promotions-btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    font-size: 1.05em;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.page-index-latest-promotions-btn-primary {
    background-color: #FFD700;
    color: #0A192F;
    border: 2px solid #FFD700;
}

.page-index-latest-promotions-btn-primary:hover {
    background-color: #e6c200;
    color: #0A192F;
    border-color: #e6c200;
}

.page-index-latest-promotions-btn-secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-index-latest-promotions-btn-secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
}

.page-index-latest-promotions-btn-outline {
    background-color: transparent;
    color: #FFD700;
    border: 1px solid #FFD700;
    padding: 10px 20px;
    font-size: 1em;
}

.page-index-latest-promotions-btn-outline:hover {
    background-color: #FFD700;
    color: #0A192F;
}

.page-index-latest-promotions-how-to-claim {
    background-color: #13233b;
    padding-top: 80px;
    padding-bottom: 80px;
}

.page-index-latest-promotions-how-to-claim h2 {
    color: #FFD700;
}

.page-index-latest-promotions-steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-index-latest-promotions-step {
    background-color: #0A192F;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-index-latest-promotions-step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-index-latest-promotions-step-icon img {
    width: 50px;
    height: 50px;
    filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(0deg) brightness(0%) contrast(100%); /* Make icons dark */
}

.page-index-latest-promotions-step h3 {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-index-latest-promotions-step p {
    font-size: 0.95em;
    color: #c0c0c0;
    margin-bottom: 0;
}

.page-index-latest-promotions-step p a {
    color: #FFD700;
    text-decoration: underline;
}

.page-index-latest-promotions-step p a:hover {
    color: #e6c200;
}

.page-index-latest-promotions-call-to-action {
    margin-top: 60px;
    text-align: center;
}

.page-index-latest-promotions-call-to-action p {
    font-size: 1.4em;
    color: #f5e6d0;
    margin-bottom: 30px;
}

.page-index-latest-promotions-terms {
    padding-bottom: 80px;
    text-align: left;
}

.page-index-latest-promotions-terms h2 {
    text-align: center;
}

.page-index-latest-promotions-terms > p {
    text-align: center;
    margin-bottom: 50px;
}

.page-index-latest-promotions-terms-content h3 {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-index-latest-promotions-terms-content p {
    color: #c0c0c0;
    font-size: 1em;
    margin-bottom: 15px;
}

.page-index-latest-promotions-terms-content a {
    color: #FFD700;
    text-decoration: underline;
}

.page-index-latest-promotions-faq {
    background-color: #13233b;
    padding-top: 80px;
    padding-bottom: 80px;
}

.page-index-latest-promotions-faq h2 {
    color: #FFD700;
}

.page-index-latest-promotions-faq-item {
    background-color: #0A192F;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-index-latest-promotions-faq-item h3 {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-index-latest-promotions-faq-item p {
    font-size: 1em;
    color: #c0c0c0;
    margin-bottom: 0;
}

.page-index-latest-promotions-cta-final {
    padding-top: 80px;
    padding-bottom: 100px;
}

.page-index-latest-promotions-cta-final h2 {
    font-size: 3em;
}

.page-index-latest-promotions-cta-final p {
    font-size: 1.2em;
    margin-bottom: 40px;
}

.page-index-latest-promotions-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.page-index-latest-promotions-btn-large {
    padding: 15px 35px;
    font-size: 1.2em;
    min-width: 250px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-index-latest-promotions-hero {
        padding: 80px 15px;
    }

    .page-index-latest-promotions-hero h1 {
        font-size: 2.5em;
    }

    .page-index-latest-promotions-hero p {
        font-size: 1.1em;
    }

    .page-index-latest-promotions-hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-index-latest-promotions-section {
        padding: 40px 15px;
    }

    .page-index-latest-promotions-section h2 {
        font-size: 2em;
    }

    .page-index-latest-promotions-grid-container {
        grid-template-columns: 1fr;
    }

    .page-index-latest-promotions-how-to-claim h2,
    .page-index-latest-promotions-terms h2,
    .page-index-latest-promotions-faq h2,
    .page-index-latest-promotions-cta-final h2 {
        font-size: 2.2em;
    }

    .page-index-latest-promotions-steps-container {
        grid-template-columns: 1fr;
    }

    .page-index-latest-promotions-cta-buttons {
        flex-direction: column;
    }

    .page-index-latest-promotions-btn-large {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-index-latest-promotions-hero h1 {
        font-size: 2em;
    }

    .page-index-latest-promotions-hero p {
        font-size: 1em;
    }

    .page-index-latest-promotions-section h2 {
        font-size: 1.8em;
    }

    .page-index-latest-promotions-promotion-card h3 {
        font-size: 1.5em;
    }

    .page-index-latest-promotions-step h3 {
        font-size: 1.3em;
    }

    .page-index-latest-promotions-call-to-action p {
        font-size: 1.2em;
    }

    .page-index-latest-promotions-cta-final h2 {
        font-size: 2em;
    }
}