/* style/promotions-new-user-bonus.css */

:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --background-dark: #000000;
    --background-light: #f8f9fa;
    --button-login-color: #EA7C07;
}

.page-promotions-new-user-bonus {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-light); /* Body background is dark, so text is light */
    background-color: var(--background-dark);
    padding-top: var(--header-offset, 120px);
}

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

.page-promotions-new-user-bonus__dark-bg {
    background-color: var(--background-dark);
    color: var(--text-light);
}

.page-promotions-new-user-bonus__light-bg {
    background-color: var(--background-light);
    color: var(--text-dark);
}

.page-promotions-new-user-bonus__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 0;
    min-height: 500px;
    overflow: hidden;
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-promotions-new-user-bonus__hero-content {
    flex: 1;
    padding-right: 40px;
    z-index: 1;
    max-width: 600px;
    margin-left: 20px;
}

.page-promotions-new-user-bonus__main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-light);
}

.page-promotions-new-user-bonus__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--text-light);
}

.page-promotions-new-user-bonus__hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-right: 20px;
}

.page-promotions-new-user-bonus__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user-bonus__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-align: center;
}

.page-promotions-new-user-bonus__btn-primary {
    background-color: var(--button-login-color);
    color: var(--text-light);
    border: 2px solid var(--button-login-color);
}

.page-promotions-new-user-bonus__btn-primary:hover {
    background-color: darken(var(--button-login-color), 10%);
    transform: translateY(-2px);
}

.page-promotions-new-user-bonus__section-title {
    font-size: 2.8em;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    color: inherit;
}

.page-promotions-new-user-bonus__section-text {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    color: inherit;
}

.page-promotions-new-user-bonus__intro-section,
.page-promotions-new-user-bonus__guide-section,
.page-promotions-new-user-bonus__faq-section {
    padding: 80px 0;
}

.page-promotions-new-user-bonus__promotions-section,
.page-promotions-new-user-bonus__terms-section,
.page-promotions-new-user-bonus__cta-section {
    padding: 80px 0;
}

.page-promotions-new-user-bonus__sub-title {
    font-size: 2em;
    margin-top: 40px;
    margin-bottom: 20px;
    color: inherit;
}

.page-promotions-new-user-bonus__paragraph {
    margin-bottom: 20px;
    font-size: 1.05em;
    color: inherit;
}

.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);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--text-light);
}

.page-promotions-new-user-bonus__card-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-promotions-new-user-bonus__card-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: bold;
    color: var(--text-light);
}

.page-promotions-new-user-bonus__card-text {
    font-size: 1em;
    margin-bottom: 25px;
    flex-grow: 1;
    color: var(--text-light);
}

.page-promotions-new-user-bonus__btn-secondary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.page-promotions-new-user-bonus__btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

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

.page-promotions-new-user-bonus__step-item {
    background-color: var(--secondary-color);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
}

.page-promotions-new-user-bonus__step-title {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.page-promotions-new-user-bonus__step-description {
    font-size: 1em;
    color: var(--text-dark);
}

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

.page-promotions-new-user-bonus__terms-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    color: var(--text-light);
}

.page-promotions-new-user-bonus__terms-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: var(--text-light);
}

.page-promotions-new-user-bonus__terms-description {
    font-size: 1em;
    color: var(--text-light);
}

.page-promotions-new-user-bonus__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-new-user-bonus__faq-item {
    background-color: var(--secondary-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
}

.page-promotions-new-user-bonus__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    color: var(--text-dark);
    background-color: var(--secondary-color);
    border-bottom: 1px solid #eee;
}

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

.page-promotions-new-user-bonus__faq-title {
    margin: 0;
    font-size: 1.1em;
    color: var(--text-dark);
}

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

.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;
    color: var(--text-dark);
}

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

.page-promotions-new-user-bonus__cta-section {
    text-align: center;
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--text-light);
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-promotions-new-user-bonus__hero-content {
        padding-right: 20px;
    }

    .page-promotions-new-user-bonus__main-title {
        font-size: 3em;
    }

    .page-promotions-new-user-bonus__section-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-promotions-new-user-bonus {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-promotions-new-user-bonus__hero-section {
        flex-direction: column;
        text-align: center;
        padding: 60px 0;
        min-height: auto;
    }

    .page-promotions-new-user-bonus__hero-content {
        padding-right: 0;
        margin-left: 0;
        padding: 0 20px;
        max-width: 100%;
    }

    .page-promotions-new-user-bonus__main-title {
        font-size: 2.5em;
    }

    .page-promotions-new-user-bonus__hero-description {
        font-size: 1em;
    }

    .page-promotions-new-user-bonus__hero-image-wrapper {
        margin-right: 0;
        margin-top: 40px;
        padding: 0 20px;
        width: 100%;
    }

    .page-promotions-new-user-bonus__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-promotions-new-user-bonus__section-text {
        margin-bottom: 40px;
    }

    .page-promotions-new-user-bonus__sub-title {
        font-size: 1.6em;
    }

    .page-promotions-new-user-bonus__promotion-grid,
    .page-promotions-new-user-bonus__step-list,
    .page-promotions-new-user-bonus__terms-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-promotions-new-user-bonus__card,
    .page-promotions-new-user-bonus__step-item,
    .page-promotions-new-user-bonus__terms-item {
        padding: 25px;
    }

    .page-promotions-new-user-bonus__card-title,
    .page-promotions-new-user-bonus__step-title,
    .page-promotions-new-user-bonus__terms-title {
        font-size: 1.3em;
    }

    .page-promotions-new-user-bonus__cta-button,
    .page-promotions-new-user-bonus__btn-primary,
    .page-promotions-new-user-bonus__btn-secondary,
    .page-promotions-new-user-bonus a[class*="button"],
    .page-promotions-new-user-bonus a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .page-promotions-new-user-bonus__cta-buttons,
    .page-promotions-new-user-bonus__button-group,
    .page-promotions-new-user-bonus__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }

    .page-promotions-new-user-bonus__section,
    .page-promotions-new-user-bonus__card,
    .page-promotions-new-user-bonus__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .page-promotions-new-user-bonus img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-promotions-new-user-bonus video,
    .page-promotions-new-user-bonus__video {
        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;
    }
}

@media (max-width: 480px) {
    .page-promotions-new-user-bonus__main-title {
        font-size: 2em;
    }

    .page-promotions-new-user-bonus__section-title {
        font-size: 1.5em;
    }

    .page-promotions-new-user-bonus__hero-section,
    .page-promotions-new-user-bonus__intro-section,
    .page-promotions-new-user-bonus__promotions-section,
    .page-promotions-new-user-bonus__guide-section,
    .page-promotions-new-user-bonus__terms-section,
    .page-promotions-new-user-bonus__faq-section,
    .page-promotions-new-user-bonus__cta-section {
        padding: 40px 0;
    }

    .page-promotions-new-user-bonus__faq-question {
        padding: 15px 20px;
        font-size: 1em;
    }

    .page-promotions-new-user-bonus__faq-answer {
        padding: 0 20px;
    }

    .page-promotions-new-user-bonus__faq-item.active .page-promotions-new-user-bonus__faq-answer {
        padding: 15px 20px;
    }
}