/* style/promotions-first-deposit-bonus.css */
.page-promotions-first-deposit-bonus {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #f0f2f5;
}

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

.page-promotions-first-deposit-bonus__hero-section {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-first-deposit-bonus__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: 700;
    color: #ffc107;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions-first-deposit-bonus__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.page-promotions-first-deposit-bonus__btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.page-promotions-first-deposit-bonus__btn--primary {
    background-color: #ffc107;
    color: #333;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.page-promotions-first-deposit-bonus__btn--primary:hover {
    background-color: #e0a800;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

.page-promotions-first-deposit-bonus__btn--secondary {
    background-color: #007bff;
    color: #ffffff;
    border: 2px solid #ffc107;
    margin-left: 15px;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.page-promotions-first-deposit-bonus__btn--secondary:hover {
    background-color: #0056b3;
    border-color: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.5);
}

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

.page-promotions-first-deposit-bonus__article {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.page-promotions-first-deposit-bonus__section-title {
    font-size: 2.2em;
    color: #007bff;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 3px solid #ffc107;
    font-weight: 600;
}

.page-promotions-first-deposit-bonus__sub-section-title {
    font-size: 1.8em;
    color: #0056b3;
    margin-top: 35px;
    margin-bottom: 20px;
    font-weight: 500;
}

.page-promotions-first-deposit-bonus__article p {
    margin-bottom: 15px;
    font-size: 1.05em;
    line-height: 1.8;
    color: #444;
}

.page-promotions-first-deposit-bonus__list {
    list-style-type: disc;
    padding-left: 25px;
    margin-bottom: 20px;
    color: #444;
}

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

.page-promotions-first-deposit-bonus__numbered-list {
    list-style-type: decimal;
    padding-left: 25px;
    margin-bottom: 20px;
    color: #444;
}

.page-promotions-first-deposit-bonus__numbered-list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-promotions-first-deposit-bonus__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-first-deposit-bonus__faq-container {
    margin-top: 30px;
}

.page-promotions-first-deposit-bonus__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-promotions-first-deposit-bonus__faq-question {
    font-size: 1.2em;
    color: #007bff;
    padding: 18px 25px;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #e9f5ff;
    border-bottom: 1px solid #d0e8ff;
    transition: background-color 0.3s ease;
}

.page-promotions-first-deposit-bonus__faq-question:hover {
    background-color: #d0e8ff;
}

.page-promotions-first-deposit-bonus__faq-answer {
    padding: 15px 25px;
    font-size: 1.05em;
    color: #555;
    display: none; /* Hidden by default, JS will toggle */
}

.page-promotions-first-deposit-bonus__faq-item.active .page-promotions-first-deposit-bonus__faq-answer {
    display: block;
}

.page-promotions-first-deposit-bonus__faq-question::after {
    content: '+';
    font-size: 1.5em;
    font-weight: bold;
    color: #007bff;
    transition: transform 0.3s ease;
}

.page-promotions-first-deposit-bonus__faq-item.active .page-promotions-first-deposit-bonus__faq-question::after {
    content: '-';
    transform: rotate(180deg);
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-first-deposit-bonus__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-first-deposit-bonus__hero-subtitle {
        font-size: 1.1em;
    }
    .page-promotions-first-deposit-bonus__section-title {
        font-size: 1.8em;
    }
    .page-promotions-first-deposit-bonus__sub-section-title {
        font-size: 1.5em;
    }
    .page-promotions-first-deposit-bonus__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-first-deposit-bonus__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    .page-promotions-first-deposit-bonus__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .page-promotions-first-deposit-bonus__hero-section {
        padding: 60px 0;
    }
    .page-promotions-first-deposit-bonus__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-first-deposit-bonus__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions-first-deposit-bonus__content-section {
        padding: 40px 0;
    }
    .page-promotions-first-deposit-bonus__article {
        padding: 25px;
    }
    .page-promotions-first-deposit-bonus__section-title {
        font-size: 1.6em;
    }
    .page-promotions-first-deposit-bonus__sub-section-title {
        font-size: 1.3em;
    }
    .page-promotions-first-deposit-bonus__list, .page-promotions-first-deposit-bonus__numbered-list {
        padding-left: 20px;
    }
    .page-promotions-first-deposit-bonus__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-promotions-first-deposit-bonus__faq-answer {
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .page-promotions-first-deposit-bonus__hero-section {
        padding: 40px 0;
    }
    .page-promotions-first-deposit-bonus__hero-title {
        font-size: 1.5em;
    }
    .page-promotions-first-deposit-bonus__hero-subtitle {
        font-size: 0.9em;
    }
    .page-promotions-first-deposit-bonus__btn {
        width: 100%;
        margin-left: 0 !important;
        margin-top: 10px;
    }
    .page-promotions-first-deposit-bonus__cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .page-promotions-first-deposit-bonus__article {
        padding: 15px;
    }
    .page-promotions-first-deposit-bonus__section-title {
        font-size: 1.4em;
    }
    .page-promotions-first-deposit-bonus__sub-section-title {
        font-size: 1.2em;
    }
    .page-promotions-first-deposit-bonus__faq-question {
        font-size: 1em;
        padding: 12px 15px;
    }
    .page-promotions-first-deposit-bonus__faq-answer {
        font-size: 0.95em;
        padding: 8px 15px;
    }
}