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

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

.page-index-latest-promotions__hero-section {
    background: linear-gradient(135deg, #1A1A2E 0%, #3a3a5c 100%); /* Dark gradient */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-latest-promotions__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,dark_pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-index-latest-promotions__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Accent gold for titles */
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-index-latest-promotions__hero-subtitle {
    font-size: 1.3em;
    color: #e5e5d1;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-index-latest-promotions__hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

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

.page-index-latest-promotions__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #1A1A2E; /* Dark text */
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-index-latest-promotions__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.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: #1A1A2E;
    transform: translateY(-3px);
}

.page-index-latest-promotions__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    background-color: #FFD700;
    color: #1A1A2E;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-index-latest-promotions__btn--small:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-index-latest-promotions__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 30px;
    padding-top: 60px;
    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-description {
    font-size: 1.1em;
    color: #C0C0C0;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.page-index-latest-promotions__promotions-overview {
    padding: 80px 0;
    background-color: #24243D; /* Slightly lighter dark background */
}

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

.page-index-latest-promotions__promo-card {
    background-color: #1A1A2E;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-index-latest-promotions__promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.page-index-latest-promotions__promo-card-img {
    max-width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    filter: brightness(0.8) contrast(1.2);
}

.page-index-latest-promotions__promo-card-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-index-latest-promotions__promo-card-text {
    color: #C0C0C0;
    font-size: 0.95em;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-index-latest-promotions__detailed-promotions {
    padding: 80px 0;
    background-color: #1A1A2E;
}

.page-index-latest-promotions__promo-category {
    margin-bottom: 70px;
    background-color: #24243D;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-latest-promotions__category-title {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.page-index-latest-promotions__category-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #FFD700;
    margin: 10px auto 0;
    border-radius: 1.5px;
}

.page-index-latest-promotions__promo-item {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    background-color: #1A1A2E;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-latest-promotions__promo-item--reverse {
    flex-direction: row-reverse;
}

.page-index-latest-promotions__promo-content {
    flex: 1;
}

.page-index-latest-promotions__promo-item-img {
    width: 350px;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    filter: brightness(0.9);
}

.page-index-latest-promotions__promo-item-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-index-latest-promotions__promo-item-text {
    color: #C0C0C0;
    margin-bottom: 20px;
}

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

.page-index-latest-promotions__promo-item-details li {
    background-color: #2e2e4e;
    padding: 8px 15px;
    border-radius: 5px;
    margin-bottom: 8px;
    color: #e5e5d1;
    border-left: 3px solid #FFD700;
}

.page-index-latest-promotions__promo-item-details li strong {
    color: #FFD700;
}

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

.page-index-latest-promotions__steps-list li {
    background-color: #1A1A2E;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    color: #e5e5d1;
    font-size: 1.1em;
    border-left: 5px solid #FFD700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

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

.page-index-latest-promotions__steps-list li a {
    color: #FFD700;
    text-decoration: underline;
}

.page-index-latest-promotions__steps-list li a:hover {
    color: #e6c200;
}

.page-index-latest-promotions__important-note {
    background-color: #3a3a5c;
    color: #e5e5d1;
    padding: 20px;
    border-radius: 8px;
    margin-top: 40px;
    border-left: 5px solid #FFD700;
    font-style: italic;
}

.page-index-latest-promotions__important-note strong {
    color: #FFD700;
}

.page-index-latest-promotions__why-choose {
    padding: 80px 0;
    background-color: #24243D;
    text-align: center;
}

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

.page-index-latest-promotions__why-choose-img {
    width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    filter: grayscale(0.2) brightness(0.9);
}

.page-index-latest-promotions__advantages-list {
    list-style: none;
    padding: 0;
    text-align: left;
    flex: 1;
    min-width: 300px;
}

.page-index-latest-promotions__advantages-list li {
    background-color: #1A1A2E;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    color: #e5e5d1;
    font-size: 1.1em;
    border-left: 4px solid #FFD700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

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

.page-index-latest-promotions__final-cta {
    margin-top: 60px;
    background-color: #1A1A2E;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #FFD700;
}

.page-index-latest-promotions__final-cta-text {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-index-latest-promotions__app-download {
    padding: 80px 0;
    background-color: #1A1A2E;
    text-align: center;
}

.page-index-latest-promotions__app-cta-group {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-index-latest-promotions__btn--download {
    background-color: #FFD700;
    color: #1A1A2E;
    padding: 12px 25px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-latest-promotions__btn--download:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-index-latest-promotions__app-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    filter: brightness(0.9);
}

.page-index-latest-promotions__app-showcase-img {
    max-width: 600px;
    width: 100%;
    margin-top: 60px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    filter: brightness(0.9);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-index-latest-promotions__hero-title {
        font-size: 2.8em;
    }

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

    .page-index-latest-promotions__promo-item {
        flex-direction: column;
        text-align: center;
    }

    .page-index-latest-promotions__promo-item--reverse {
        flex-direction: column;
    }

    .page-index-latest-promotions__promo-item-img {
        width: 100%;
        max-width: 400px;
        height: auto;
        margin-bottom: 20px;
    }

    .page-index-latest-promotions__why-choose-content {
        flex-direction: column;
    }

    .page-index-latest-promotions__why-choose-img {
        width: 100%;
        max-width: 450px;
    }
}

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

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

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

    .page-index-latest-promotions__btn {
        width: 80%;
        margin: 0 auto;
    }

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

    .page-index-latest-promotions__promo-card {
        padding: 20px;
    }

    .page-index-latest-promotions__promo-card-title {
        font-size: 1.4em;
    }

    .page-index-latest-promotions__category-title {
        font-size: 1.6em;
    }

    .page-index-latest-promotions__promo-item {
        padding: 20px;
    }

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

    .page-index-latest-promotions__steps-list li {
        font-size: 1em;
    }

    .page-index-latest-promotions__final-cta-text {
        font-size: 1.2em;
    }

    .page-index-latest-promotions__app-cta-group {
        flex-direction: column;
        gap: 15px;
    }

    .page-index-latest-promotions__btn--download {
        width: 80%;
        margin: 0 auto;
    }
}

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

    .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__promo-grid {
        grid-template-columns: 1fr;
    }

    .page-index-latest-promotions__promo-item-img {
        height: 200px;
    }
}