/* style/index-latest-promotions-entry.css */
.page-index-latest-promotions-entry {
    font-family: 'Arial', sans-serif;
    color: #FFFFFF; /* Default text color on dark backgrounds */
    background-color: #0A2463; /* Main background color */
    line-height: 1.6;
}

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

.page-index-latest-promotions-entry__section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.page-index-latest-promotions-entry__hero-section {
    background: linear-gradient(135deg, #0A2463 0%, #061A40 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-latest-promotions-entry__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 0;
}

.page-index-latest-promotions-entry__hero-section > .page-index-latest-promotions-entry__container {
    position: relative;
    z-index: 1;
}

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

.page-index-latest-promotions-entry__hero-subtitle {
    font-size: 1.5em;
    color: #FFFFFF;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-index-latest-promotions-entry__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;
    margin: 0 10px;
    cursor: pointer;
}

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

.page-index-latest-promotions-entry__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-3px);
}

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

.page-index-latest-promotions-entry__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A2463;
    transform: translateY(-3px);
}

.page-index-latest-promotions-entry__section-title {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 60px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    font-weight: bold;
}

.page-index-latest-promotions-entry__section-description {
    font-size: 1.1em;
    color: #E0E0E0;
    text-align: center;
    max-width: 900px;
    margin: -40px auto 60px auto;
}

.page-index-latest-promotions-entry__why-choose-us {
    background-color: #061A40;
}

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

.page-index-latest-promotions-entry__feature-item {
    background-color: #0A2463;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.page-index-latest-promotions-entry__feature-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index-latest-promotions-entry__feature-item p {
    color: #E0E0E0;
    font-size: 1em;
}

.page-index-latest-promotions-entry__promotions {
    background-color: #0A2463;
}

.page-index-latest-promotions-entry__promo-card {
    background-color: #061A40;
    border-radius: 15px;
    margin-bottom: 40px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-index-latest-promotions-entry__promo-card:nth-child(even) {
    flex-direction: row-reverse;
}

.page-index-latest-promotions-entry__promo-image {
    width: 40%;
    height: 300px;
    object-fit: cover;
}

.page-index-latest-promotions-entry__promo-content {
    width: 60%;
    padding: 40px;
}

.page-index-latest-promotions-entry__promo-title {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-index-latest-promotions-entry__promo-text {
    color: #E0E0E0;
    margin-bottom: 20px;
    font-size: 1.05em;
}

.page-index-latest-promotions-entry__promo-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.page-index-latest-promotions-entry__promo-list li {
    color: #FFFFFF;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.page-index-latest-promotions-entry__promo-list li::before {
    content: '✓';
    color: #FFD700;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page-index-latest-promotions-entry__btn--detail {
    background-color: #FFD700;
    color: #0A2463;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 0.95em;
}

.page-index-latest-promotions-entry__btn--detail:hover {
    background-color: #e6c200;
}

.page-index-latest-promotions-entry__how-to-claim {
    background-color: #061A40;
}

.page-index-latest-promotions-entry__steps-list {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.page-index-latest-promotions-entry__steps-list li {
    background-color: #0A2463;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.page-index-latest-promotions-entry__step-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index-latest-promotions-entry__steps-list p {
    color: #E0E0E0;
}

.page-index-latest-promotions-entry__call-to-action-text {
    text-align: center;
    margin-top: 50px;
    font-size: 1.2em;
    color: #FFD700;
    font-weight: bold;
}

.page-index-latest-promotions-entry__responsible-gaming {
    background-color: #0A2463;
}

.page-index-latest-promotions-entry__responsible-list {
    list-style: none;
    padding-left: 0;
    max-width: 900px;
    margin: 0 auto 30px auto;
}

.page-index-latest-promotions-entry__responsible-list li {
    background-color: #061A40;
    margin-bottom: 15px;
    padding: 20px;
    border-left: 5px solid #FFD700;
    border-radius: 8px;
    color: #E0E0E0;
    font-size: 1.05em;
}

.page-index-latest-promotions-entry__responsible-list li strong {
    color: #FFD700;
}

.page-index-latest-promotions-entry__text {
    color: #E0E0E0;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1em;
}

.page-index-latest-promotions-entry__faq {
    background-color: #061A40;
}

.page-index-latest-promotions-entry__faq-item {
    background-color: #0A2463;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-index-latest-promotions-entry__faq-question {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: bold;
}

.page-index-latest-promotions-entry__faq-answer {
    color: #E0E0E0;
    font-size: 1em;
    display: block; /* Ensure it's visible */
}

.page-index-latest-promotions-entry__cta-final {
    background: linear-gradient(45deg, #0A2463 0%, #061A40 100%);
    text-align: center;
    padding: 100px 0;
    position: relative;
}

.page-index-latest-promotions-entry__cta-content {
    position: relative;
    z-index: 1;
}

.page-index-latest-promotions-entry__cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 0;
}

.page-index-latest-promotions-entry__btn--large {
    padding: 18px 40px;
    font-size: 1.3em;
    margin-top: 30px;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-latest-promotions-entry__hero-title {
        font-size: 2.8em;
    }
    .page-index-latest-promotions-entry__hero-subtitle {
        font-size: 1.3em;
    }
    .page-index-latest-promotions-entry__section-title {
        font-size: 2.2em;
    }
    .page-index-latest-promotions-entry__promo-card {
        flex-direction: column;
    }
    .page-index-latest-promotions-entry__promo-card:nth-child(even) {
        flex-direction: column;
    }
    .page-index-latest-promotions-entry__promo-image,
    .page-index-latest-promotions-entry__promo-content {
        width: 100%;
    }
    .page-index-latest-promotions-entry__promo-image {
        height: 250px;
    }
    .page-index-latest-promotions-entry__promo-content {
        padding: 30px;
    }
    .page-index-latest-promotions-entry__promo-title {
        font-size: 1.7em;
    }
    .page-index-latest-promotions-entry__steps-list {
        grid-template-columns: 1fr;
    }
    .page-index-latest-promotions-entry__features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-index-latest-promotions-entry__hero-title {
        font-size: 2.2em;
    }
    .page-index-latest-promotions-entry__hero-subtitle {
        font-size: 1.1em;
    }
    .page-index-latest-promotions-entry__section-title {
        font-size: 1.8em;
    }
    .page-index-latest-promotions-entry__btn {
        padding: 12px 25px;
        font-size: 1em;
        margin: 5px;
    }
    .page-index-latest-promotions-entry__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-index-latest-promotions-entry__promo-title {
        font-size: 1.5em;
    }
    .page-index-latest-promotions-entry__faq-question {
        font-size: 1.3em;
    }
    .page-index-latest-promotions-entry__section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .page-index-latest-promotions-entry__hero-title {
        font-size: 1.8em;
    }
    .page-index-latest-promotions-entry__hero-subtitle {
        font-size: 1em;
    }
    .page-index-latest-promotions-entry__section-title {
        font-size: 1.5em;
    }
    .page-index-latest-promotions-entry__btn {
        display: block;
        width: fit-content;
        margin: 15px auto;
    }
    .page-index-latest-promotions-entry__promo-image {
        height: 200px;
    }
    .page-index-latest-promotions-entry__promo-content {
        padding: 20px;
    }
    .page-index-latest-promotions-entry__promo-title {
        font-size: 1.3em;
    }
    .page-index-latest-promotions-entry__feature-title {
        font-size: 1.4em;
    }
    .page-index-latest-promotions-entry__step-title {
        font-size: 1.3em;
    }
    .page-index-latest-promotions-entry__faq-question {
        font-size: 1.1em;
    }
    .page-index-latest-promotions-entry__section {
        padding: 40px 0;
    }
}