/* style/promotions-welcome-bonus-details.css */
.page-promotions-welcome-bonus-details {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #E2E8F0; /* Light gray for text on dark background */
    background-color: #1A202C; /* Main dark background */
}

.page-promotions-welcome-bonus-details__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-promotions-welcome-bonus-details__hero-section {
    background: linear-gradient(135deg, #1A202C 0%, #3a3f4a 100%); /* Dark gradient for hero */
    padding: 80px 0;
    text-align: center;
    border-bottom: 2px solid #FFD700;
}

.page-promotions-welcome-bonus-details__main-title {
    font-size: 3.2em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-welcome-bonus-details__hero-description {
    font-size: 1.2em;
    color: #CBD5E0; /* Lighter gray for description */
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-welcome-bonus-details__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #1A202C; /* Dark text on gold button */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.page-promotions-welcome-bonus-details__cta-button:hover {
    background-color: #E0C000; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

.page-promotions-welcome-bonus-details__cta-button--small {
    padding: 10px 20px;
    font-size: 1em;
}

.page-promotions-welcome-bonus-details__cta-button--secondary {
    background-color: #3A4750; /* Darker secondary button */
    color: #FFD700; /* Gold text on dark button */
    border: 1px solid #FFD700;
    margin-left: 15px;
}

.page-promotions-welcome-bonus-details__cta-button--secondary:hover {
    background-color: #4A5A65;
    color: #FFEA80;
}

.page-promotions-welcome-bonus-details__content-section {
    padding: 60px 0;
    border-bottom: 1px solid #2D3748; /* Subtle border between sections */
}

.page-promotions-welcome-bonus-details__content-section:last-of-type {
    border-bottom: none;
}

.page-promotions-welcome-bonus-details__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.page-promotions-welcome-bonus-details__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-promotions-welcome-bonus-details__sub-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold for sub-titles */
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-promotions-welcome-bonus-details p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #E2E8F0;
}

.page-promotions-welcome-bonus-details ul,
.page-promotions-welcome-bonus-details ol {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #E2E8F0;
}

.page-promotions-welcome-bonus-details ol {
    list-style-type: decimal;
}

.page-promotions-welcome-bonus-details li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-promotions-welcome-bonus-details strong {
    color: #FFD700;
}

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

.page-promotions-welcome-bonus-details__image-small {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-welcome-bonus-details__detail-item {
    margin-bottom: 40px;
    background-color: #2D3748; /* Slightly lighter dark background for detail items */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-welcome-bonus-details__call-to-action-block {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: #2D3748;
    border-radius: 10px;
    border: 1px solid #FFD700;
}

.page-promotions-welcome-bonus-details__call-to-action-block p {
    font-size: 1.3em;
    margin-bottom: 25px;
    color: #FFD700;
}

.page-promotions-welcome-bonus-details__steps-list {
    list-style-type: none;
    counter-reset: step-counter;
    padding-left: 0;
}

.page-promotions-welcome-bonus-details__steps-list li {
    counter-increment: step-counter;
    margin-bottom: 20px;
    padding-left: 50px;
    position: relative;
    font-size: 1.15em;
    color: #E2E8F0;
}

.page-promotions-welcome-bonus-details__steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #FFD700;
    color: #1A202C;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
}

.page-promotions-welcome-bonus-details__tips-list {
    list-style-type: '⚡ ';
    padding-left: 20px;
}

.page-promotions-welcome-bonus-details__tips-list li {
    margin-bottom: 12px;
    font-size: 1.1em;
}

.page-promotions-welcome-bonus-details__faq-item {
    background-color: #2D3748;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.page-promotions-welcome-bonus-details__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-promotions-welcome-bonus-details__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5em;
    line-height: 1;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-promotions-welcome-bonus-details__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-promotions-welcome-bonus-details__faq-answer {
    font-size: 1.05em;
    color: #CBD5E0;
    display: none;
    margin-top: 10px;
}

.page-promotions-welcome-bonus-details__faq-answer.active {
    display: block;
}

.page-promotions-welcome-bonus-details__final-cta {
    text-align: center;
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #1A202C;
}

.page-promotions-welcome-bonus-details__cta-group {
    margin-top: 40px;
}

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

    .page-promotions-welcome-bonus-details__section-title {
        font-size: 2em;
    }

    .page-promotions-welcome-bonus-details__sub-title {
        font-size: 1.5em;
    }

    .page-promotions-welcome-bonus-details__hero-section,
    .page-promotions-welcome-bonus-details__content-section {
        padding: 40px 0;
    }

    .page-promotions-welcome-bonus-details__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-promotions-welcome-bonus-details__cta-button--secondary {
        margin-left: 0;
        margin-top: 15px;
    }

    .page-promotions-welcome-bonus-details__cta-group {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-promotions-welcome-bonus-details__main-title {
        font-size: 2em;
    }

    .page-promotions-welcome-bonus-details__section-title {
        font-size: 1.8em;
    }

    .page-promotions-welcome-bonus-details__hero-description,
    .page-promotions-welcome-bonus-details p,
    .page-promotions-welcome-bonus-details li {
        font-size: 1em;
    }

    .page-promotions-welcome-bonus-details__cta-button {
        width: 100%;
        box-sizing: border-box;
    }
}