/* style/index-latest-promotions.css */
.page-index-latest-promotions {
    font-family: 'Arial', sans-serif;
    color: #e5e5d1; /* Light text for dark background */
    background-color: #1A1A2E;
    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%, #E94560 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.page-index-latest-promotions__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.page-index-latest-promotions__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
    overflow: hidden;
}

.page-index-latest-promotions__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.page-index-latest-promotions__hero-title {
    font-size: 3.5em;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

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

.page-index-latest-promotions__cta-button {
    display: inline-block;
    background-color: #E94560;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
}

.page-index-latest-promotions__cta-button:hover {
    background-color: #d13a53;
    transform: translateY(-3px);
}

.page-index-latest-promotions__section {
    padding: 80px 0;
    text-align: center;
}

.page-index-latest-promotions__section-title {
    font-size: 2.8em;
    color: #E94560;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.page-index-latest-promotions__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #E94560;
    border-radius: 2px;
}

.page-index-latest-promotions__section-description {
    font-size: 1.1em;
    color: #e5e5d1;
    max-width: 900px;
    margin: 20px auto 40px auto;
}

.page-index-latest-promotions__intro-section {
    background-color: #1A1A2E;
}

.page-index-latest-promotions__bonuses-section {
    background-color: #1A1A2E;
    border-top: 1px solid rgba(233, 69, 96, 0.2);
}

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

.page-index-latest-promotions__bonus-card {
    background-color: #272740;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(233, 69, 96, 0.1);
}

.page-index-latest-promotions__bonus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.page-index-latest-promotions__bonus-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 10px rgba(233, 69, 96, 0.3));
}

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

.page-index-latest-promotions__card-description {
    font-size: 1em;
    color: #c0c0c0;
    margin-bottom: 15px;
}

.page-index-latest-promotions__card-details {
    font-size: 0.9em;
    color: #888;
    margin-bottom: 25px;
    font-style: italic;
}

.page-index-latest-promotions__card-button {
    display: inline-block;
    background-color: #E94560;
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-index-latest-promotions__card-button:hover {
    background-color: #d13a53;
}

.page-index-latest-promotions__vip-section {
    background-color: #1A1A2E;
    padding: 100px 0;
    border-top: 1px solid rgba(233, 69, 96, 0.2);
}

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

.page-index-latest-promotions__vip-image {
    max-width: 450px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    filter: brightness(0.9);
}

.page-index-latest-promotions__vip-text {
    max-width: 600px;
    text-align: left;
    color: #e5e5d1;
}

.page-index-latest-promotions__vip-text h2 {
    color: #E94560;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.page-index-latest-promotions__vip-text p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

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

.page-index-latest-promotions__vip-text ul li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23E94560" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') no-repeat left center;
    background-size: 20px;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-index-latest-promotions__app-download-section {
    background-color: #272740;
    padding: 100px 0;
    border-top: 1px solid rgba(233, 69, 96, 0.2);
}

.page-index-latest-promotions__app-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
    text-align: left;
}

.page-index-latest-promotions__app-text {
    max-width: 600px;
    color: #e5e5d1;
}

.page-index-latest-promotions__app-text .page-index-latest-promotions__section-title {
    text-align: left;
    color: #E94560;
}

.page-index-latest-promotions__app-text .page-index-latest-promotions__section-title::after {
    left: 0;
    transform: translateX(0);
}

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

.page-index-latest-promotions__app-features li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23E94560" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><polyline points="12 6 12 12 16 14"></polyline></svg>') no-repeat left center;
    background-size: 20px;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-index-latest-promotions__app-image-wrapper {
    max-width: 350px;
}

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

.page-index-latest-promotions__safety-section {
    background-color: #1A1A2E;
    padding: 100px 0;
    border-top: 1px solid rgba(233, 69, 96, 0.2);
}

.page-index-latest-promotions__safety-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 900px;
    margin: 50px auto;
}

.page-index-latest-promotions__safety-icon {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 5px 15px rgba(233, 69, 96, 0.4));
}

.page-index-latest-promotions__safety-text {
    font-size: 1.1em;
    color: #c0c0c0;
}

.page-index-latest-promotions__small-button {
    padding: 12px 25px;
    font-size: 1em;
    margin-top: 20px;
}

.page-index-latest-promotions__cta-final-section {
    background: linear-gradient(45deg, #1A1A2E, #272740);
    padding: 80px 0;
    border-top: 1px solid rgba(233, 69, 96, 0.2);
}

.page-index-latest-promotions__cta-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-index-latest-promotions__cta-button--secondary {
    background-color: transparent;
    border: 2px solid #E94560;
    color: #E94560;
    box-shadow: none;
}

.page-index-latest-promotions__cta-button--secondary:hover {
    background-color: #E94560;
    color: #ffffff;
    transform: translateY(-3px);
}

.page-index-latest-promotions__faq-section {
    background-color: #1A1A2E;
    padding: 80px 0;
    border-top: 1px solid rgba(233, 69, 96, 0.2);
    text-align: left;
}

.page-index-latest-promotions__faq-section .page-index-latest-promotions__section-title {
    text-align: center;
    margin-bottom: 50px;
}

.page-index-latest-promotions__faq-item {
    background-color: #272740;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(233, 69, 96, 0.1);
}

.page-index-latest-promotions__faq-question {
    color: #E94560;
    font-size: 1.3em;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-index-latest-promotions__faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: #E94560;
    transition: transform 0.3s ease;
}

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

.page-index-latest-promotions__faq-answer {
    color: #c0c0c0;
    font-size: 1em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding-top: 0;
}

.page-index-latest-promotions__faq-answer.active {
    max-height: 200px; /* Adjust based on content */
    padding-top: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-latest-promotions__hero-title {
        font-size: 2.8em;
    }
    .page-index-latest-promotions__hero-subtitle {
        font-size: 1.3em;
    }
    .page-index-latest-promotions__section-title {
        font-size: 2.2em;
    }
    .page-index-latest-promotions__vip-content, .page-index-latest-promotions__app-flex {
        flex-direction: column;
        text-align: center;
    }
    .page-index-latest-promotions__vip-text, .page-index-latest-promotions__app-text {
        max-width: 100%;
    }
    .page-index-latest-promotions__vip-text ul, .page-index-latest-promotions__app-features {
        text-align: left;
        padding-left: 20px;
    }
    .page-index-latest-promotions__app-text .page-index-latest-promotions__section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .page-index-latest-promotions__hero-section {
        padding: 80px 0;
        min-height: 400px;
    }
    .page-index-latest-promotions__hero-title {
        font-size: 2.2em;
    }
    .page-index-latest-promotions__hero-subtitle {
        font-size: 1.1em;
    }
    .page-index-latest-promotions__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-index-latest-promotions__section {
        padding: 60px 0;
    }
    .page-index-latest-promotions__section-title {
        font-size: 1.8em;
    }
    .page-index-latest-promotions__bonus-grid {
        grid-template-columns: 1fr;
    }
    .page-index-latest-promotions__vip-image, .page-index-latest-promotions__app-image {
        max-width: 100%;
    }
    .page-index-latest-promotions__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-index-latest-promotions__faq-item {
        padding: 20px;
    }
    .page-index-latest-promotions__faq-question {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-index-latest-promotions__hero-title {
        font-size: 1.8em;
    }
    .page-index-latest-promotions__hero-subtitle {
        font-size: 0.9em;
    }
    .page-index-latest-promotions__section-description {
        font-size: 0.9em;
    }
    .page-index-latest-promotions__card-title {
        font-size: 1.5em;
    }
    .page-index-latest-promotions__vip-text p, .page-index-latest-promotions__vip-text ul li, .page-index-latest-promotions__app-features li, .page-index-latest-promotions__safety-text, .page-index-latest-promotions__faq-answer {
        font-size: 0.95em;
    }
}