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

.page-promotions-first-deposit-bonus__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-promotions-first-deposit-bonus__hero-section {
    background: linear-gradient(135deg, #1A1A2E, #E94560);
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF;
}

.page-promotions-first-deposit-bonus__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 1.2;
}

.page-promotions-first-deposit-bonus__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #F0F0F0;
}

.page-promotions-first-deposit-bonus__content-section {
    padding: 60px 0;
}

.page-promotions-first-deposit-bonus__section-title {
    font-size: 2.5em;
    color: #E94560;
    margin-top: 50px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.page-promotions-first-deposit-bonus__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #E94560;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-promotions-first-deposit-bonus__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #E5E5D1;
    text-align: justify;
}

.page-promotions-first-deposit-bonus__highlight {
    color: #E94560;
    font-weight: bold;
}

.page-promotions-first-deposit-bonus__list {
    list-style-type: disc;
    margin-left: 40px;
    margin-bottom: 30px;
    color: #E5E5D1;
}

.page-promotions-first-deposit-bonus__list li {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-promotions-first-deposit-bonus__list li strong {
    color: #E94560;
}

.page-promotions-first-deposit-bonus__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    text-align: center;
    white-space: nowrap;
}

.page-promotions-first-deposit-bonus__btn--primary {
    background-color: #E94560;
    color: #FFFFFF;
    border: 2px solid #E94560;
}

.page-promotions-first-deposit-bonus__btn--primary:hover {
    background-color: #FF6B81;
    border-color: #FF6B81;
    transform: translateY(-3px);
}

.page-promotions-first-deposit-bonus__btn--secondary {
    background-color: transparent;
    color: #E94560;
    border: 2px solid #E94560;
}

.page-promotions-first-deposit-bonus__btn--secondary:hover {
    background-color: #E94560;
    color: #FFFFFF;
    transform: translateY(-3px);
}

.page-promotions-first-deposit-bonus__btn--tertiary {
    background-color: #1F2833;
    color: #E5E5D1;
    border: 2px solid #1F2833;
}

.page-promotions-first-deposit-bonus__btn--tertiary:hover {
    background-color: #3B4A5C;
    border-color: #3B4A5C;
    transform: translateY(-3px);
}

.page-promotions-first-deposit-bonus__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.page-promotions-first-deposit-bonus__cta-final-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.page-promotions-first-deposit-bonus__image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-first-deposit-bonus__faq-item {
    background-color: #2A2A3A;
    border-left: 5px solid #E94560;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-promotions-first-deposit-bonus__faq-question {
    font-size: 1.3em;
    color: #E94560;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-promotions-first-deposit-bonus__faq-answer {
    font-size: 1.1em;
    color: #E5E5D1;
}

.page-promotions-first-deposit-bonus__link {
    color: #E94560;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-promotions-first-deposit-bonus__link:hover {
    color: #FF6B81;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-promotions-first-deposit-bonus__hero-title {
        font-size: 2.5em;
    }

    .page-promotions-first-deposit-bonus__hero-subtitle {
        font-size: 1.2em;
    }

    .page-promotions-first-deposit-bonus__section-title {
        font-size: 2em;
    }

    .page-promotions-first-deposit-bonus__text, 
    .page-promotions-first-deposit-bonus__list li, 
    .page-promotions-first-deposit-bonus__faq-answer {
        font-size: 1em;
    }

    .page-promotions-first-deposit-bonus__faq-question {
        font-size: 1.1em;
    }

    .page-promotions-first-deposit-bonus__cta-group,
    .page-promotions-first-deposit-bonus__cta-final-group {
        flex-direction: column;
        align-items: center;
    }

    .page-promotions-first-deposit-bonus__btn {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-promotions-first-deposit-bonus__hero-title {
        font-size: 2em;
    }

    .page-promotions-first-deposit-bonus__hero-subtitle {
        font-size: 1em;
    }

    .page-promotions-first-deposit-bonus__section-title {
        font-size: 1.8em;
    }

    .page-promotions-first-deposit-bonus__list {
        margin-left: 20px;
    }
}