:root {
    --primary-color: #2F6BFF;
    --secondary-color: #6FA3FF;
    --button-gradient: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    --card-bg-color: #FFFFFF;
    --background-color: #F4F7FB;
    --text-main-color: #1F2D3D;
    --text-custom-color-1776249996415: #000000;
    --border-color: #D6E2FF;
    --glow-color: #A5C4FF;
    --header-offset: 122px; /* Default, will be overridden by shared.css if present */
}

.page-promotions-new-user-bonus {
    padding-top: 10px; /* Small top padding, relying on body for header offset */
    color: var(--text-main-color);
    font-family: Arial, sans-serif;
}

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

.page-promotions-new-user-bonus__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--primary-color);
    padding-bottom: 40px;
}

.page-promotions-new-user-bonus__hero-image {
    width: 100%;
    max-width: 1920px;
    height: auto;
    display: block;
    object-fit: cover;
    margin-bottom: 20px;
}

.page-promotions-new-user-bonus__hero-content {
    text-align: center;
    color: var(--card-bg-color); /* White text on hero */
    max-width: 900px;
    padding: 0 20px;
}

.page-promotions-new-user-bonus__main-title {
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--card-bg-color);
    line-height: 1.2;
}

.page-promotions-new-user-bonus__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    line-height: 1.6;
}

.page-promotions-new-user-bonus__cta-button,
.page-promotions-new-user-bonus__register-now-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--card-bg-color);
    background: var(--button-gradient);
    font-weight: bold;
    font-size: 1.05em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    min-width: 200px; /* Ensure button is not too small */
    text-align: center;
}

.page-promotions-new-user-bonus__cta-button:hover,
.page-promotions-new-user-bonus__register-now-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user-bonus__section-title {
    font-size: 2.2em;
    color: var(--text-custom-color-1776249996415);
    text-align: center;
    margin-top: 50px;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-promotions-new-user-bonus__bonus-details-section,
.page-promotions-new-user-bonus__registration-steps-section,
.page-promotions-new-user-bonus__faq-section {
    padding: 60px 0;
    background-color: var(--background-color);
}

.page-promotions-new-user-bonus__bonus-details-section {
    background-color: var(--card-bg-color);
}

.page-promotions-new-user-bonus__content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.page-promotions-new-user-bonus__content-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.page-promotions-new-user-bonus__text-content {
    flex: 1;
    min-width: 300px; /* Ensure text content has enough space */
}

.page-promotions-new-user-bonus__text-content p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: var(--text-main-color);
}

.page-promotions-new-user-bonus__feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-promotions-new-user-bonus__feature-list li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="%232F6BFF"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left center;
    background-size: 20px;
    padding-left: 30px;
    margin-bottom: 10px;
    line-height: 1.5;
    color: var(--text-main-color);
}

.page-promotions-new-user-bonus__learn-more-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    color: var(--primary-color);
    background-color: var(--card-bg-color);
    border: 1px solid var(--primary-color);
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-promotions-new-user-bonus__learn-more-button:hover {
    background-color: var(--primary-color);
    color: var(--card-bg-color);
}

.page-promotions-new-user-bonus__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.page-promotions-new-user-bonus__step-card {
    background-color: var(--card-bg-color);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid var(--border-color);
}

.page-promotions-new-user-bonus__step-title {
    font-size: 1.3em;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions-new-user-bonus__step-description {
    font-size: 0.95em;
    line-height: 1.6;
    color: var(--text-main-color);
}

.page-promotions-new-user-bonus__steps-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.page-promotions-new-user-bonus__register-now-button {
    margin-top: 20px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-new-user-bonus__faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.page-promotions-new-user-bonus__faq-item {
    background-color: var(--card-bg-color);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions-new-user-bonus__faq-question {
    font-size: 1.15em;
    color: var(--text-custom-color-1776249996415);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions-new-user-bonus__faq-answer {
    font-size: 1em;
    line-height: 1.6;
    color: var(--text-main-color);
}

.page-promotions-new-user-bonus__faq-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 40px auto 0 auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .page-promotions-new-user-bonus__hero-section {
        padding-bottom: 60px;
    }

    .page-promotions-new-user-bonus__main-title {
        font-size: clamp(2.2em, 4vw, 3.5em); /* Use clamp for H1 font size */
    }

    .page-promotions-new-user-bonus__description {
        font-size: 1.2em;
    }

    .page-promotions-new-user-bonus__content-wrapper {
        flex-wrap: nowrap;
    }

    .page-promotions-new-user-bonus__content-image {
        flex-shrink: 0;
    }

    .page-promotions-new-user-bonus__content-wrapper:nth-child(even) {
        flex-direction: row-reverse; /* Alternate image/text layout */
    }

    .page-promotions-new-user-bonus__faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-promotions-new-user-bonus__hero-image,
    .page-promotions-new-user-bonus__content-image,
    .page-promotions-new-user-bonus__steps-image,
    .page-promotions-new-user-bonus__faq-image {
        max-width: 100%;
        height: auto;
    }

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

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

    .page-promotions-new-user-bonus__content-wrapper {
        flex-direction: column;
    }
    
    .page-promotions-new-user-bonus__text-content {
        min-width: unset;
    }

    .page-promotions-new-user-bonus__steps-grid {
        grid-template-columns: 1fr;
    }
    
    .page-promotions-new-user-bonus__cta-button,
    .page-promotions-new-user-bonus__register-now-button {
        width: 100%;
        max-width: 300px;
    }
}

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

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

    .page-promotions-new-user-bonus__cta-button,
    .page-promotions-new-user-bonus__register-now-button {
        padding: 12px 20px;
        font-size: 0.95em;
    }
}