/* style/promotions.css */
.page-promotions {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #E0E0E0;
    background-color: #1A1A2E;
}

.page-promotions .highlight {
    color: #FFD700;
}

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

.page-promotions__section {
    padding: 60px 0;
    text-align: center;
}

.page-promotions__section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #FFFFFF;
    position: relative;
    padding-bottom: 10px;
}

.page-promotions__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #FFD700;
}

.page-promotions__section-description {
    font-size: 1.1em;
    color: #B0B0B0;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.page-promotions__btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-promotions__btn--primary {
    background-color: #FFD700;
    color: #0A2342;
}

.page-promotions__btn--primary:hover {
    background-color: #E0B500;
    transform: translateY(-2px);
}

.page-promotions__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    margin-left: 15px;
}

.page-promotions__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A2342;
    transform: translateY(-2px);
}

.page-promotions__btn-small {
    padding: 8px 20px;
    font-size: 0.9em;
    background-color: #0A2342;
    color: #FFD700;
    border: 1px solid #FFD700;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.page-promotions__btn-small:hover {
    background-color: #FFD700;
    color: #0A2342;
}

.page-promotions__btn--large {
    padding: 15px 40px;
    font-size: 1.2em;
}

.page-promotions__btn--center {
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: fit-content;
}

/* Hero Section */
.page-promotions__hero-section {
    background: linear-gradient(135deg, #0A2342 0%, #1A1A2E 100%);
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    text-align: left;
}

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

.page-promotions__hero-title {
    font-size: 3.5em;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-promotions__hero-description {
    font-size: 1.2em;
    color: #B0B0B0;
    margin-bottom: 30px;
    line-height: 1.7;
}

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

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

/* Welcome Bonus Section */
.page-promotions__welcome-bonus {
    background-color: #0A2342;
}

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

.page-promotions__card {
    background-color: #1A1A2E;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__card-image {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-promotions__card-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-promotions__card-text {
    color: #B0B0B0;
    font-size: 0.95em;
    line-height: 1.6;
    margin-bottom: 25px;
}

.page-promotions__card-btn {
    background-color: #FFD700;
    color: #0A2342;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-promotions__card-btn:hover {
    background-color: #E0B500;
}

/* Deposit Bonus Section */
.page-promotions__deposit-bonus {
    background-color: #1A1A2E;
}

.page-promotions__offer-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.page-promotions__offer-item {
    background-color: #0A2342;
    border-radius: 10px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-promotions__offer-item:hover {
    transform: translateY(-3px);
}

.page-promotions__offer-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.page-promotions__offer-details {
    flex-grow: 1;
}

.page-promotions__offer-title {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 8px;
}

.page-promotions__offer-text {
    color: #B0B0B0;
    font-size: 0.9em;
    line-height: 1.5;
}

/* Sports & Casino Offers */
.page-promotions__sports-casino-offers {
    background-color: #0A2342;
}

.page-promotions__grid-2-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions__promo-box {
    background-color: #1A1A2E;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__promo-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__promo-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 20px;
}

.page-promotions__promo-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
    padding: 0 20px;
}

.page-promotions__promo-text {
    color: #B0B0B0;
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 30px;
    padding: 0 20px;
}

/* VIP Program */
.page-promotions__vip-program {
    background-color: #1A1A2E;
}

.page-promotions__vip-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.page-promotions__vip-item {
    flex-basis: 280px;
    text-align: center;
}

.page-promotions__vip-icon img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-promotions__vip-feature-title {
    font-size: 1.4em;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.page-promotions__vip-feature-text {
    color: #B0B0B0;
    font-size: 0.95em;
    line-height: 1.5;
}

/* App Download Section */
.page-promotions__app-download {
    background: linear-gradient(90deg, #0A2342 0%, #1A1A2E 100%);
    padding: 80px 0;
}

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

.page-promotions__app-text {
    max-width: 500px;
}

.page-promotions__app-text .page-promotions__section-title, 
.page-promotions__app-text .page-promotions__section-description {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

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

.page-promotions__app-image-wrapper {
    flex-shrink: 0;
    max-width: 300px;
}

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

/* FAQ Section */
.page-promotions__faq {
    background-color: #0A2342;
}

.page-promotions__faq-list {
    max-width: 900px;
    margin: 40px auto 0 auto;
    text-align: left;
}

.page-promotions__faq-item {
    background-color: #1A1A2E;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-promotions__faq-question {
    font-size: 1.2em;
    color: #FFFFFF;
    padding: 18px 25px;
    cursor: pointer;
    position: relative;
    margin: 0;
    transition: background-color 0.3s ease;
}

.page-promotions__faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-promotions__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-promotions__faq-answer {
    padding: 0 25px 18px 25px;
    color: #B0B0B0;
    font-size: 0.95em;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-promotions__faq-answer p {
    margin: 0;
}

.page-promotions__faq-answer a {
    color: #FFD700;
    text-decoration: none;
}

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

/* CTA Section */
.page-promotions__cta-section {
    background-color: #FFD700;
    padding: 70px 0;
    color: #0A2342;
}

.page-promotions__cta-title {
    font-size: 2.8em;
    color: #0A2342;
    margin-bottom: 20px;
}

.page-promotions__cta-description {
    font-size: 1.2em;
    color: #333333;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__cta-section .highlight {
    color: #0A2342;
}

.page-promotions__cta-section .page-promotions__btn--primary {
    background-color: #0A2342;
    color: #FFD700;
}

.page-promotions__cta-section .page-promotions__btn--primary:hover {
    background-color: #1F3F60;
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions__hero-section {
        flex-direction: column;
        text-align: center;
    }

    .page-promotions__hero-content {
        padding-left: 0;
    }

    .page-promotions__hero-title {
        font-size: 3em;
    }

    .page-promotions__hero-description {
        font-size: 1.1em;
    }

    .page-promotions__hero-actions {
        justify-content: center;
    }

    .page-promotions__app-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .page-promotions__app-text .page-promotions__section-title,
    .page-promotions__app-text .page-promotions__section-description {
        text-align: center;
    }

    .page-promotions__app-text .page-promotions__section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .page-promotions__grid-2-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-promotions__section-title {
        font-size: 2em;
    }

    .page-promotions__hero-title {
        font-size: 2.5em;
    }

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

    .page-promotions__btn--secondary {
        margin-left: 0;
    }

    .page-promotions__card-grid {
        grid-template-columns: 1fr;
    }

    .page-promotions__offer-item {
        flex-direction: column;
        text-align: center;
    }

    .page-promotions__offer-icon {
        margin-bottom: 10px;
    }

    .page-promotions__promo-box {
        padding-bottom: 30px;
    }

    .page-promotions__cta-title {
        font-size: 2em;
    }

    .page-promotions__vip-features {
        gap: 20px;
    }
}

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

    .page-promotions__hero-title {
        font-size: 2em;
    }

    .page-promotions__hero-description {
        font-size: 1em;
    }

    .page-promotions__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

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

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

    .page-promotions__faq-question::after {
        right: 20px;
    }

    .page-promotions__faq-answer {
        padding: 0 20px 15px 20px;
    }
}