/* style/promotions-new-user-bonus.css */
.page-promotions-new-user-bonus {
    color: #ffffff; /* Default text color for dark body background */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-promotions-new-user-bonus__dark-bg {
    background-color: #1a1a1a;
    color: #ffffff;
}

.page-promotions-new-user-bonus__light-bg {
    background-color: #ffffff;
    color: #333333;
}

.page-promotions-new-user-bonus__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.page-promotions-new-user-bonus__hero-content {
    max-width: 900px;
    z-index: 1;
}

.page-promotions-new-user-bonus__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #26A9E0; /* Brand color for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-new-user-bonus__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-promotions-new-user-bonus__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-promotions-new-user-bonus__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.page-promotions-new-user-bonus__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    z-index: 1;
}

.page-promotions-new-user-bonus__btn-primary,
.page-promotions-new-user-bonus__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.page-promotions-new-user-bonus__btn-primary {
    background-color: #26A9E0;
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-promotions-new-user-bonus__btn-primary:hover {
    background-color: #1e87c0;
    border-color: #1e87c0;
}

.page-promotions-new-user-bonus__btn-secondary {
    background-color: transparent;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-promotions-new-user-bonus__btn-secondary:hover {
    background-color: #26A9E0;
    color: #ffffff;
}

.page-promotions-new-user-bonus__content-area {
    padding: 60px 20px;
}

.page-promotions-new-user-bonus__container {
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-promotions-new-user-bonus__section-title {
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
    color: #26A9E0; /* Brand color for section titles */
}

.page-promotions-new-user-bonus__dark-section .page-promotions-new-user-bonus__section-title {
    color: #ffffff;
}

.page-promotions-new-user-bonus__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: inherit;
}

.page-promotions-new-user-bonus__content-image {
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    height: auto;
}

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

.page-promotions-new-user-bonus__card {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-promotions-new-user-bonus__light-bg .page-promotions-new-user-bonus__card {
    background-color: #f9f9f9;
    color: #333333;
    border: 1px solid #e0e0e0;
}

.page-promotions-new-user-bonus__card-title {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #26A9E0;
}

.page-promotions-new-user-bonus__card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-promotions-new-user-bonus__card-text {
    font-size: 1em;
    margin-bottom: 20px;
    flex-grow: 1;
    color: inherit;
}

.page-promotions-new-user-bonus__steps-list,
.page-promotions-new-user-bonus__terms-list,
.page-promotions-new-user-bonus__advantages-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-promotions-new-user-bonus__list-item {
    background-color: #f9f9f9;
    color: #333333;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions-new-user-bonus__dark-section .page-promotions-new-user-bonus__list-item {
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.page-promotions-new-user-bonus__list-title {
    font-size: 1.5em;
    color: #26A9E0;
    margin-bottom: 10px;
}

.page-promotions-new-user-bonus__list-item p {
    font-size: 1em;
    color: inherit;
}

.page-promotions-new-user-bonus__note {
    background-color: #ffeeba;
    color: #856404;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ffc107;
    margin-top: 30px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.page-promotions-new-user-bonus__note-icon {
    font-size: 1.5em;
    line-height: 1;
}

.page-promotions-new-user-bonus__register-button {
    margin-top: 30px;
}

.page-promotions-new-user-bonus__faq-section {
    padding: 60px 20px;
}

.page-promotions-new-user-bonus__faq-list {
    margin-top: 40px;
}

.page-promotions-new-user-bonus__faq-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #ffffff;
}

.page-promotions-new-user-bonus__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: #26A9E0;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
}

.page-promotions-new-user-bonus__faq-question:hover {
    background-color: #1e87c0;
}

.page-promotions-new-user-bonus__faq-title {
    margin: 0;
    color: inherit;
}

.page-promotions-new-user-bonus__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-promotions-new-user-bonus__faq-item.active .page-promotions-new-user-bonus__faq-toggle {
    transform: rotate(45deg);
}

.page-promotions-new-user-bonus__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: rgba(255, 255, 255, 0.05);
    color: #f0f0f0;
}

.page-promotions-new-user-bonus__faq-item.active .page-promotions-new-user-bonus__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to contain content */
    padding: 15px 25px;
}

.page-promotions-new-user-bonus__cta-bottom {
    padding: 60px 20px;
    text-align: center;
}

.page-promotions-new-user-bonus__large-button {
    font-size: 1.4em;
    padding: 18px 40px;
    margin-top: 30px;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-promotions-new-user-bonus__hero-title {
        font-size: 2.8em;
    }
    .page-promotions-new-user-bonus__hero-description {
        font-size: 1.1em;
    }
    .page-promotions-new-user-bonus__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-promotions-new-user-bonus {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-promotions-new-user-bonus__hero-section {
        padding: 40px 15px;
    }
    .page-promotions-new-user-bonus__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-new-user-bonus__hero-description {
        font-size: 1em;
    }
    .page-promotions-new-user-bonus__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    .page-promotions-new-user-bonus__btn-primary,
    .page-promotions-new-user-bonus__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-promotions-new-user-bonus__content-area,
    .page-promotions-new-user-bonus__dark-section,
    .page-promotions-new-user-bonus__faq-section,
    .page-promotions-new-user-bonus__cta-bottom {
        padding: 30px 15px;
    }
    .page-promotions-new-user-bonus__container {
        padding-left: 0;
        padding-right: 0;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-promotions-new-user-bonus__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
    }
    .page-promotions-new-user-bonus__text-block {
        font-size: 1em;
    }
    .page-promotions-new-user-bonus__promotion-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-new-user-bonus__card {
        padding: 20px;
    }
    .page-promotions-new-user-bonus__card-title {
        font-size: 1.5em;
    }
    .page-promotions-new-user-bonus__card-image {
        height: 200px;
    }
    .page-promotions-new-user-bonus__list-item {
        padding: 20px;
    }
    .page-promotions-new-user-bonus__list-title {
        font-size: 1.3em;
    }
    .page-promotions-new-user-bonus__note {
        font-size: 0.9em;
    }
    .page-promotions-new-user-bonus__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-promotions-new-user-bonus__faq-answer {
        padding: 10px 20px;
    }
    .page-promotions-new-user-bonus__large-button {
        font-size: 1.2em;
        padding: 15px 30px;
    }
    .page-promotions-new-user-bonus img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-promotions-new-user-bonus__video-section,
    .page-promotions-new-user-bonus__video-container,
    .page-promotions-new-user-bonus__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-promotions-new-user-bonus__video-section {
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-promotions-new-user-bonus__cta-buttons {
        flex-wrap: wrap !important;
        gap: 10px;
    }
}