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

:root {
    --primary-color: #017439;
    --secondary-color: #FFFFFF;
    --register-color: #C30808;
    --login-color: #C30808;
    --register-login-font-color: #FFFF00;
    --text-color-dark: #333333;
    --text-color-light: #ffffff;
    --border-color: #e0e0e0;
    --card-bg: #ffffff;
    --faq-question-bg: #fff;
    --faq-answer-bg: #f9f9f9;
}

.page-promotions-new-user-bonus {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark);
    background: var(--secondary-color);
}

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

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

.page-promotions-new-user-bonus__section {
    padding: 60px 0;
    position: relative;
}

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

.page-promotions-new-user-bonus__center-content {
    text-align: center;
}

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

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

.page-promotions-new-user-bonus__paragraph {
    font-size: 17px;
    margin-bottom: 20px;
    text-align: justify;
}

/* Hero Section */
.page-promotions-new-user-bonus__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 60px;
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    overflow: hidden;
}

.page-promotions-new-user-bonus__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.page-promotions-new-user-bonus__hero-image {
    width: 100%;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.page-promotions-new-user-bonus__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.page-promotions-new-user-bonus__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-promotions-new-user-bonus__hero-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--text-color-light);
}

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

.page-promotions-new-user-bonus__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--register-color);
    color: var(--register-login-font-color);
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    border: none;
    cursor: pointer;
}

.page-promotions-new-user-bonus__cta-button:hover {
    background: #a80707;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Image styles */
.page-promotions-new-user-bonus__image-full-width {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin-top: 30px;
    object-fit: cover;
}

.page-promotions-new-user-bonus__image-center {
    display: block;
    margin: 30px auto;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

/* Steps Grid */
.page-promotions-new-user-bonus__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-new-user-bonus__card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-color-dark);
}

.page-promotions-new-user-bonus__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

.page-promotions-new-user-bonus__step-description {
    font-size: 16px;
    color: var(--text-color-dark);
    margin-bottom: 20px;
}

.page-promotions-new-user-bonus__btn-primary {
    display: inline-block;
    padding: 12px 25px;
    background: var(--register-color);
    color: var(--register-login-font-color);
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    border: none;
    cursor: pointer;
}

.page-promotions-new-user-bonus__btn-primary:hover {
    background: #a80707;
}

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

.page-promotions-new-user-bonus__feature-item {
    text-align: center;
}

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

.page-promotions-new-user-bonus__feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.page-promotions-new-user-bonus__feature-description {
    font-size: 16px;
    color: var(--text-color-dark);
}

/* Terms List */
.page-promotions-new-user-bonus__terms-list {
    list-style: disc inside;
    margin-left: 20px;
    font-size: 17px;
    color: var(--text-color-light);
}

.page-promotions-new-user-bonus__terms-list li {
    margin-bottom: 10px;
}

.page-promotions-new-user-bonus__terms-list li strong {
    color: var(--register-login-font-color);
}

/* Benefits List */
.page-promotions-new-user-bonus__benefits-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-promotions-new-user-bonus__benefits-list li {
    background: var(--card-bg);
    border-left: 5px solid var(--primary-color);
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    font-size: 17px;
    color: var(--text-color-dark);
}

.page-promotions-new-user-bonus__benefits-list li strong {
    color: var(--primary-color);
}

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

.page-promotions-new-user-bonus__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.page-promotions-new-user-bonus__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 15px;
    opacity: 0;
    background: var(--faq-answer-bg);
    color: var(--text-color-dark);
}

.page-promotions-new-user-bonus__faq-item.active .page-promotions-new-user-bonus__faq-answer {
    max-height: 2000px !important;
    padding: 20px 15px !important;
    opacity: 1;
    border-radius: 0 0 5px 5px;
}

.page-promotions-new-user-bonus__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: var(--faq-question-bg);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.page-promotions-new-user-bonus__dark-bg .page-promotions-new-user-bonus__faq-question {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-color-light);
}

.page-promotions-new-user-bonus__dark-bg .page-promotions-new-user-bonus__faq-question h3 {
    color: var(--text-color-light);
}

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

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

.page-promotions-new-user-bonus__dark-bg .page-promotions-new-user-bonus__faq-question:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.page-promotions-new-user-bonus__faq-question:active {
    background: #eeeeee;
}

.page-promotions-new-user-bonus__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    pointer-events: none;
    color: var(--text-color-dark);
}

.page-promotions-new-user-bonus__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #666;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.page-promotions-new-user-bonus__faq-item.active .page-promotions-new-user-bonus__faq-toggle {
    color: #333;
    transform: rotate(45deg); /* Change to X or rotate for active state */
}

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

.page-promotions-new-user-bonus__cta-banner .page-promotions-new-user-bonus__section-title,
.page-promotions-new-user-bonus__cta-banner .page-promotions-new-user-bonus__paragraph {
    color: var(--text-color-light);
}

.page-promotions-new-user-bonus__register-button {
    background: var(--register-color);
    color: var(--register-login-font-color);
    padding: 18px 50px;
    font-size: 20px;
    margin-top: 40px;
}

.page-promotions-new-user-bonus__register-button:hover {
    background: #a80707;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-promotions-new-user-bonus__hero-title {
        font-size: 42px;
    }
    .page-promotions-new-user-bonus__hero-description {
        font-size: 18px;
    }
    .page-promotions-new-user-bonus__section-title {
        font-size: 30px;
    }
    .page-promotions-new-user-bonus__paragraph,
    .page-promotions-new-user-bonus__terms-list,
    .page-promotions-new-user-bonus__benefits-list li,
    .page-promotions-new-user-bonus__step-description,
    .page-promotions-new-user-bonus__feature-description {
        font-size: 16px;
    }
    .page-promotions-new-user-bonus__faq-question h3 {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .page-promotions-new-user-bonus__hero-section {
        padding-top: var(--header-offset, 120px) !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-promotions-new-user-bonus__hero-title {
        font-size: 32px;
    }
    .page-promotions-new-user-bonus__hero-description {
        font-size: 16px;
    }
    .page-promotions-new-user-bonus__cta-button {
        padding: 12px 30px;
        font-size: 16px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-promotions-new-user-bonus__section {
        padding: 40px 0;
    }
    .page-promotions-new-user-bonus__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-promotions-new-user-bonus__section-title {
        font-size: 26px;
        margin-bottom: 30px;
    }
    .page-promotions-new-user-bonus__steps-grid,
    .page-promotions-new-user-bonus__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-promotions-new-user-bonus__image-full-width,
    .page-promotions-new-user-bonus__image-center {
        margin: 20px auto;
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-promotions-new-user-bonus__feature-image {
        height: 200px;
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-promotions-new-user-bonus__faq-question {
        padding: 15px;
        flex-wrap: wrap;
    }
    .page-promotions-new-user-bonus__faq-question h3 {
        font-size: 15px;
        margin-bottom: 0;
        width: calc(100% - 40px);
    }
    .page-promotions-new-user-bonus__faq-toggle {
        margin-left: 10px;
        width: 24px;
        height: 24px;
        font-size: 20px;
    }
    .page-promotions-new-user-bonus__faq-answer {
        padding: 0 15px;
    }
    .page-promotions-new-user-bonus__faq-item.active .page-promotions-new-user-bonus__faq-answer {
        padding: 15px !important;
    }
    .page-promotions-new-user-bonus__register-button {
        padding: 15px 30px;
        font-size: 18px;
        margin-top: 30px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-promotions-new-user-bonus p,
    .page-promotions-new-user-bonus li {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .page-promotions-new-user-bonus__hero-title {
        font-size: 28px;
    }
    .page-promotions-new-user-bonus__section-title {
        font-size: 24px;
    }
    .page-promotions-new-user-bonus__paragraph {
        font-size: 14px;
    }
}