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

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

.page-index-latest-promotions .hero-section {
    background: linear-gradient(135deg, #1A237E, #3F51B5); /* Darker indigo to slightly lighter indigo */
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-latest-promotions .hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Bright gold for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

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

.page-index-latest-promotions .btn-primary {
    background-color: #FFD700; /* Bright gold */
    color: #1A237E; /* Deep indigo for text */
    border: none;
}

.page-index-latest-promotions .btn-primary:hover {
    background-color: #e5c100;
    transform: translateY(-2px);
}

.page-index-latest-promotions .btn-secondary {
    background-color: #1A237E; /* Deep indigo */
    color: #FFD700; /* Bright gold for text */
    border: 2px solid #FFD700;
    margin-left: 20px;
}

.page-index-latest-promotions .btn-secondary:hover {
    background-color: #0d124d;
    transform: translateY(-2px);
}

.page-index-latest-promotions .content-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-index-latest-promotions .section-title {
    font-size: 2.5em;
    color: #1A237E;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

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

.page-index-latest-promotions .section-paragraph {
    font-size: 1.1em;
    color: #555555;
    text-align: justify;
    margin-bottom: 30px;
}

.page-index-latest-promotions .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    text-align: center;
}

.page-index-latest-promotions .feature-item {
    background-color: #f0f2f5;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.page-index-latest-promotions .feature-item:hover {
    transform: translateY(-10px);
}

.page-index-latest-promotions .feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #FFD700;
}

.page-index-latest-promotions .feature-title {
    font-size: 1.6em;
    color: #1A237E;
    margin-bottom: 15px;
}

.page-index-latest-promotions .feature-description {
    color: #666666;
    font-size: 1em;
}

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

.page-index-latest-promotions .promo-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.page-index-latest-promotions .promo-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #FFD700;
}

.page-index-latest-promotions .promo-card h3.promo-title {
    font-size: 1.8em;
    color: #1A237E;
    padding: 20px 25px 10px;
    margin: 0;
}

.page-index-latest-promotions .promo-description {
    font-size: 1em;
    color: #555555;
    padding: 0 25px 15px;
    flex-grow: 1;
}

.page-index-latest-promotions .promo-features {
    list-style: none;
    padding: 0 25px 25px;
    margin: 0;
}

.page-index-latest-promotions .promo-features li {
    margin-bottom: 8px;
    color: #444444;
    font-size: 0.95em;
}

.page-index-latest-promotions .promo-features li::before {
    content: '✅';
    margin-right: 10px;
    color: #FFD700;
}

.page-index-latest-promotions .participation-steps {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    counter-reset: step-counter;
}

.page-index-latest-promotions .participation-steps li {
    background-color: #f0f2f5;
    margin-bottom: 15px;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
    color: #333333;
    position: relative;
    padding-left: 60px;
}

.page-index-latest-promotions .participation-steps li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #1A237E;
    color: #FFD700;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2em;
}

.page-index-latest-promotions .step-highlight {
    color: #1A237E;
}

.page-index-latest-promotions .link-text {
    color: #1A237E;
    text-decoration: underline;
    font-weight: bold;
}

.page-index-latest-promotions .link-text:hover {
    color: #FFD700;
}

.page-index-latest-promotions .responsible-gambling-list,
.page-index-latest-promotions .tips-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.page-index-latest-promotions .responsible-gambling-list li,
.page-index-latest-promotions .tips-list li {
    background-color: #fffde7; /* Very light gold */
    border-left: 5px solid #FFD700;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    color: #444444;
    font-size: 1.05em;
}

.page-index-latest-promotions .responsible-gambling-list li strong,
.page-index-latest-promotions .tips-list li strong {
    color: #1A237E;
}

.page-index-latest-promotions .cta-section {
    background-color: #1A237E;
    color: #FFFFFF;
    padding: 60px 40px;
    text-align: center;
    border-radius: 10px;
    margin-top: 60px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-index-latest-promotions .cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-index-latest-promotions .cta-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #E0E0E0;
}

.page-index-latest-promotions .cta-buttons .btn {
    margin: 10px;
}

.page-index-latest-promotions .copyright-section {
    background-color: #1A237E;
    color: #E0E0E0;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}

.page-index-latest-promotions .copyright-section p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-latest-promotions .hero-title {
        font-size: 2.5em;
    }

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

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

    .page-index-latest-promotions .promo-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .page-index-latest-promotions .cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-index-latest-promotions .hero-section {
        padding: 60px 0;
    }

    .page-index-latest-promotions .hero-title {
        font-size: 2em;
    }

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

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

    .page-index-latest-promotions .btn-secondary {
        margin-left: 0;
        margin-top: 15px;
    }

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

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

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

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

    .page-index-latest-promotions .cta-title {
        font-size: 1.8em;
    }

    .page-index-latest-promotions .cta-description {
        font-size: 1em;
    }
}

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

    .page-index-latest-promotions .btn {
        display: block;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }

    .page-index-latest-promotions .btn-secondary {
        margin-top: 10px;
    }

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

    .page-index-latest-promotions .participation-steps li {
        padding-left: 45px;
    }

    .page-index-latest-promotions .participation-steps li::before {
        left: 10px;
        width: 30px;
        height: 30px;
        font-size: 1em;
    }

    .page-index-latest-promotions .cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .page-index-latest-promotions .cta-buttons .btn {
        width: 80%;
        margin: 5px auto;
    }
}