/* style/index-latest-promotions.css */

:root {
    --page-primary-color: #0A2239;
    --page-secondary-color: #FFD700;
    --page-text-light: #FFFFFF;
    --page-text-dark: #0A2239;
    --page-bg-dark: #0A2239;
    --page-bg-light: #f5f5f5; /* A very light grey for contrast */
    --page-accent-color: #b39700; /* Darker shade of gold for text on gold bg */
}

.page-index-latest-promotions {
    font-family: 'Arial', sans-serif;
    color: var(--page-text-light);
    background-color: var(--page-bg-dark);
}

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

.page-index-latest-promotions__section-title {
    font-size: 2.8em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: var(--page-secondary-color);
    line-height: 1.2;
}

.page-index-latest-promotions__section-title .highlight {
    color: var(--page-text-light);
}

.page-index-latest-promotions__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: #CCCCCC;
    line-height: 1.6;
}

.page-index-latest-promotions__hero {
    background: linear-gradient(135deg, var(--page-primary-color) 0%, #304C6E 100%);
    padding: 80px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    text-align: center;
}

.page-index-latest-promotions__hero-content {
    max-width: 600px;
    padding: 20px;
}

.page-index-latest-promotions__hero-title {
    font-size: 3.5em;
    color: var(--page-text-light);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-index-latest-promotions__hero-title .highlight {
    color: var(--page-secondary-color);
}

.page-index-latest-promotions__hero-subtitle {
    font-size: 1.3em;
    color: #E0E0E0;
    margin-bottom: 40px;
    line-height: 1.5;
}

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

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

.page-index-latest-promotions__btn--primary {
    background-color: var(--page-secondary-color);
    color: var(--page-text-dark);
    border: 2px solid var(--page-secondary-color);
}

.page-index-latest-promotions__btn--primary:hover {
    background-color: #E6B800;
    transform: translateY(-3px);
}

.page-index-latest-promotions__btn--secondary {
    background-color: transparent;
    color: var(--page-secondary-color);
    border: 2px solid var(--page-secondary-color);
}

.page-index-latest-promotions__btn--secondary:hover {
    background-color: var(--page-secondary-color);
    color: var(--page-text-dark);
    transform: translateY(-3px);
}

.page-index-latest-promotions__hero-image-wrapper {
    max-width: 500px;
    flex-shrink: 0;
}

.page-index-latest-promotions__hero-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-index-latest-promotions__why-choose, .page-index-latest-promotions__promotions-list, .page-index-latest-promotions__how-to-claim, .page-index-latest-promotions__app-download, .page-index-latest-promotions__responsible-gaming, .page-index-latest-promotions__faq, .page-index-latest-promotions__final-cta {
    padding: 80px 0;
    background-color: var(--page-bg-dark);
}

.page-index-latest-promotions__why-choose {
    background-color: #1a3551;
}

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

.page-index-latest-promotions__feature-item {
    background-color: #122a44;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-index-latest-promotions__feature-item:hover {
    transform: translateY(-5px);
}

.page-index-latest-promotions__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px var(--page-secondary-color));
}

.page-index-latest-promotions__feature-title {
    font-size: 1.8em;
    color: var(--page-secondary-color);
    margin-bottom: 15px;
}

.page-index-latest-promotions__feature-description {
    font-size: 1em;
    color: #B0B0B0;
    line-height: 1.6;
}

.page-index-latest-promotions__feature-description a {
    color: var(--page-secondary-color);
    text-decoration: none;
}

.page-index-latest-promotions__feature-description a:hover {
    text-decoration: underline;
}

.page-index-latest-promotions__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.page-index-latest-promotions__promo-card {
    background-color: #1a3551;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.page-index-latest-promotions__promo-card:hover {
    transform: translateY(-8px);
}

.page-index-latest-promotions__promo-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.page-index-latest-promotions__promo-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-index-latest-promotions__promo-title {
    font-size: 2em;
    color: var(--page-secondary-color);
    margin-bottom: 15px;
}

.page-index-latest-promotions__promo-title .highlight {
    color: var(--page-text-light);
}

.page-index-latest-promotions__promo-description {
    font-size: 1em;
    color: #C0C0C0;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-index-latest-promotions__promo-description a {
    color: var(--page-secondary-color);
    text-decoration: none;
}

.page-index-latest-promotions__promo-description a:hover {
    text-decoration: underline;
}

.page-index-latest-promotions__promo-details {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.page-index-latest-promotions__promo-details li {
    font-size: 1em;
    color: #E0E0E0;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.page-index-latest-promotions__promo-details li::before {
    content: '✅';
    margin-right: 10px;
    color: var(--page-secondary-color);
}

.page-index-latest-promotions__promo-card .page-index-latest-promotions__btn {
    margin-top: auto;
    width: 100%;
    background-color: var(--page-secondary-color);
    color: var(--page-text-dark);
    border: none;
}

.page-index-latest-promotions__promo-card .page-index-latest-promotions__btn:hover {
    background-color: #E6B800;
    transform: translateY(-3px);
}

.page-index-latest-promotions__how-to-claim {
    background-color: #122a44;
}

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

.page-index-latest-promotions__step-item {
    background-color: var(--page-primary-color);
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

.page-index-latest-promotions__step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--page-secondary-color);
    color: var(--page-text-dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    border: 3px solid var(--page-primary-color);
}

.page-index-latest-promotions__step-title {
    font-size: 1.8em;
    color: var(--page-secondary-color);
    margin-top: 20px;
    margin-bottom: 15px;
}

.page-index-latest-promotions__step-description {
    font-size: 1em;
    color: #B0B0B0;
    line-height: 1.6;
}

.page-index-latest-promotions__step-description a {
    color: var(--page-secondary-color);
    text-decoration: none;
}

.page-index-latest-promotions__step-description a:hover {
    text-decoration: underline;
}

.page-index-latest-promotions__cta-bottom {
    text-align: center;
    margin-top: 60px;
}

.page-index-latest-promotions__app-download {
    background-color: #1a3551;
}

.page-index-latest-promotions__download-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
}

.page-index-latest-promotions__download-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-index-latest-promotions__download-text {
    max-width: 600px;
    text-align: left;
}

.page-index-latest-promotions__download-title {
    font-size: 2.2em;
    color: var(--page-secondary-color);
    margin-bottom: 20px;
}

.page-index-latest-promotions__download-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-index-latest-promotions__download-list li {
    font-size: 1.1em;
    color: #E0E0E0;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.page-index-latest-promotions__download-list li::before {
    content: '✨';
    margin-right: 15px;
    font-size: 1.2em;
    line-height: 1;
    color: var(--page-secondary-color);
    flex-shrink: 0;
}

.page-index-latest-promotions__responsible-gaming {
    background-color: var(--page-bg-dark);
}

.page-index-latest-promotions__responsible-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 50px auto 30px auto;
}

.page-index-latest-promotions__responsible-list li {
    font-size: 1.1em;
    color: #E0E0E0;
    margin-bottom: 15px;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
}

.page-index-latest-promotions__responsible-list li::before {
    content: '🛡️';
    margin-right: 15px;
    font-size: 1.2em;
    line-height: 1;
    color: var(--page-secondary-color);
    flex-shrink: 0;
}

.page-index-latest-promotions__responsible-text {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: #B0B0B0;
    line-height: 1.6;
}

.page-index-latest-promotions__responsible-text a {
    color: var(--page-secondary-color);
    text-decoration: none;
}

.page-index-latest-promotions__responsible-text a:hover {
    text-decoration: underline;
}

.page-index-latest-promotions__faq {
    background-color: #122a44;
}

.page-index-latest-promotions__faq-accordion {
    max-width: 800px;
    margin: 50px auto 0 auto;
}

.page-index-latest-promotions__faq-item {
    background-color: var(--page-primary-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-index-latest-promotions__faq-question {
    font-size: 1.3em;
    color: var(--page-secondary-color);
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    margin: 0;
}

.page-index-latest-promotions__faq-question .highlight {
    color: var(--page-text-light);
}

.page-index-latest-promotions__faq-question::after {
    content: '▼';
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.page-index-latest-promotions__faq-question.active::after {
    transform: rotate(180deg);
}

.page-index-latest-promotions__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    background-color: #1a3551;
}

.page-index-latest-promotions__faq-answer p {
    font-size: 1em;
    color: #C0C0C0;
    line-height: 1.6;
    padding-bottom: 20px;
    margin: 0;
}

.page-index-latest-promotions__faq-answer p a {
    color: var(--page-secondary-color);
    text-decoration: none;
}

.page-index-latest-promotions__faq-answer p a:hover {
    text-decoration: underline;
}

.page-index-latest-promotions__final-cta {
    background-color: var(--page-primary-color);
    text-align: center;
    padding: 100px 0;
}

.page-index-latest-promotions__final-actions {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-index-latest-promotions__hero {
        flex-direction: column;
        padding: 60px 0;
    }

    .page-index-latest-promotions__hero-title {
        font-size: 2.8em;
    }

    .page-index-latest-promotions__hero-subtitle {
        font-size: 1.1em;
    }

    .page-index-latest-promotions__hero-image-wrapper {
        max-width: 80%;
    }

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

    .page-index-latest-promotions__why-choose, .page-index-latest-promotions__promotions-list, .page-index-latest-promotions__how-to-claim, .page-index-latest-promotions__app-download, .page-index-latest-promotions__responsible-gaming, .page-index-latest-promotions__faq, .page-index-latest-promotions__final-cta {
        padding: 60px 0;
    }

    .page-index-latest-promotions__download-content {
        flex-direction: column;
        text-align: center;
    }

    .page-index-latest-promotions__download-text {
        text-align: center;
    }

    .page-index-latest-promotions__download-list li {
        justify-content: center;
    }

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

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

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

@media (max-width: 768px) {
    .page-index-latest-promotions__hero-title {
        font-size: 2.2em;
    }

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

    .page-index-latest-promotions__btn {
        width: 80%;
        max-width: 300px;
    }

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

    .page-index-latest-promotions__feature-title, .page-index-latest-promotions__promo-title, .page-index-latest-promotions__step-title, .page-index-latest-promotions__download-title {
        font-size: 1.5em;
    }

    .page-index-latest-promotions__faq-question {
        font-size: 1.1em;
    }

    .page-index-latest-promotions__final-actions {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .page-index-latest-promotions__hero {
        padding: 40px 0;
    }

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

    .page-index-latest-promotions__hero-subtitle {
        font-size: 1em;
    }

    .page-index-latest-promotions__btn {
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-index-latest-promotions__section-title {
        font-size: 1.5em;
    }

    .page-index-latest-promotions__section-description {
        font-size: 0.9em;
    }

    .page-index-latest-promotions__promo-image {
        height: 180px;
    }

    .page-index-latest-promotions__promo-content, .page-index-latest-promotions__feature-item, .page-index-latest-promotions__step-item {
        padding: 20px;
    }

    .page-index-latest-promotions__promo-title, .page-index-latest-promotions__feature-title, .page-index-latest-promotions__step-title, .page-index-latest-promotions__download-title {
        font-size: 1.3em;
    }

    .page-index-latest-promotions__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }

    .page-index-latest-promotions__faq-answer p {
        padding-bottom: 15px;
    }

    .page-index-latest-promotions__download-image {
        max-width: 90%;
    }
}