:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --card-bg: #11271B;
    --bg: #08160F;
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green-color: #0A4B2C;
}

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

.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__container--center {
    text-align: center;
}

.page-promotions-new-user-bonus__section-title {
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 700;
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.4);
    line-height: 1.2;
}

.page-promotions-new-user-bonus__text-block {
    font-size: 18px;
    margin-bottom: 25px;
    text-align: center;
    color: var(--text-secondary);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-new-user-bonus__text-link {
    color: var(--gold-color);
    text-decoration: underline;
}

/* Hero Section */
.page-promotions-new-user-bonus__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 0 60px 0;
    overflow: hidden;
}

.page-promotions-new-user-bonus__hero-image-wrapper {
    width: 100%;
    max-height: 700px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-promotions-new-user-bonus__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.page-promotions-new-user-bonus__hero-content {
    padding: 40px 20px;
    max-width: 900px;
    margin-top: 20px;
}

.page-promotions-new-user-bonus__main-title {
    font-size: clamp(32px, 4.5vw, 64px);
    font-weight: 900;
    color: var(--text-main);
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 0 15px rgba(17, 168, 78, 0.6);
}

.page-promotions-new-user-bonus__hero-description {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-promotions-new-user-bonus__btn-primary,
.page-promotions-new-user-bonus__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-promotions-new-user-bonus__btn-primary {
    background: var(--btn-gradient);
    color: #ffffff;
    border: 2px solid var(--glow-color);
    box-shadow: 0 0 15px rgba(87, 227, 141, 0.5);
}

.page-promotions-new-user-bonus__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(87, 227, 141, 0.8);
}

.page-promotions-new-user-bonus__btn-primary--large {
    padding: 18px 40px;
    font-size: 20px;
}

.page-promotions-new-user-bonus__btn-secondary {
    background-color: transparent;
    color: var(--glow-color);
    border: 2px solid var(--glow-color);
}

.page-promotions-new-user-bonus__btn-secondary:hover {
    background-color: rgba(87, 227, 141, 0.1);
    transform: translateY(-3px);
}

/* Why Choose Section & Cards */
.page-promotions-new-user-bonus__why-choose {
    background-color: var(--deep-green-color);
    padding: 80px 0;
}

.page-promotions-new-user-bonus__why-choose .page-promotions-new-user-bonus__section-title {
    color: var(--text-main);
    text-shadow: none;
}

.page-promotions-new-user-bonus__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: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-main);
}

.page-promotions-new-user-bonus__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

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

.page-promotions-new-user-bonus__card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--gold-color);
    margin-bottom: 15px;
}

.page-promotions-new-user-bonus__card-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Bonus Types Section */
.page-promotions-new-user-bonus__bonus-types .page-promotions-new-user-bonus__section-title {
    color: var(--gold-color);
}

.page-promotions-new-user-bonus__grid--bonus-types {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.page-promotions-new-user-bonus__card--bonus {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 25px;
    text-align: left;
}

.page-promotions-new-user-bonus__card--bonus .page-promotions-new-user-bonus__card-title {
    font-size: 22px;
    color: var(--glow-color);
}

.page-promotions-new-user-bonus__card--bonus .page-promotions-new-user-bonus__card-text {
    font-size: 16px;
    color: var(--text-secondary);
}

/* How to Register Section */
.page-promotions-new-user-bonus__how-to-register {
    background-color: var(--bg);
    padding: 80px 0;
}

.page-promotions-new-user-bonus__steps-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 50px;
}

.page-promotions-new-user-bonus__step-item {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.page-promotions-new-user-bonus__step-item--reverse {
    flex-direction: row-reverse;
}

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

.page-promotions-new-user-bonus__step-content {
    flex: 2;
}

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

.page-promotions-new-user-bonus__step-text {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.page-promotions-new-user-bonus__cta-center {
    text-align: center;
    margin-top: 60px;
}

/* Games with Bonus Section */
.page-promotions-new-user-bonus__games-with-bonus {
    background-color: var(--deep-green-color);
}

.page-promotions-new-user-bonus__games-with-bonus .page-promotions-new-user-bonus__section-title {
    color: var(--text-main);
    text-shadow: none;
}

.page-promotions-new-user-bonus__game-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.page-promotions-new-user-bonus__game-item {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 20px;
    border: 1px solid var(--border-color);
    font-size: 17px;
    color: var(--text-secondary);
    transition: background-color 0.3s ease;
}

.page-promotions-new-user-bonus__game-item:hover {
    background-color: rgba(17, 168, 78, 0.2);
}

.page-promotions-new-user-bonus__game-item a {
    color: var(--glow-color);
    text-decoration: none;
    font-weight: 700;
}

.page-promotions-new-user-bonus__game-item a:hover {
    text-decoration: underline;
}

/* Terms & Conditions Section */
.page-promotions-new-user-bonus__terms-conditions .page-promotions-new-user-bonus__section-title {
    color: var(--gold-color);
}

.page-promotions-new-user-bonus__terms-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-new-user-bonus__terms-item {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.page-promotions-new-user-bonus__terms-item strong {
    color: var(--glow-color);
}

/* FAQ Section */
.page-promotions-new-user-bonus__faq-section {
    background-color: var(--deep-green-color);
}

.page-promotions-new-user-bonus__faq-section .page-promotions-new-user-bonus__section-title {
    color: var(--text-main);
    text-shadow: none;
}

.page-promotions-new-user-bonus__faq-list {
    max-width: 900px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page-promotions-new-user-bonus__faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    color: var(--text-secondary);
}

.page-promotions-new-user-bonus__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 18px;
    font-weight: 700;
    color: var(--glow-color);
    cursor: pointer;
    list-style: none;
    position: relative;
    transition: background-color 0.3s ease;
}

.page-promotions-new-user-bonus__faq-question::-webkit-details-marker {
    display: none;
}

.page-promotions-new-user-bonus__faq-question:hover {
    background-color: rgba(87, 227, 141, 0.1);
}

.page-promotions-new-user-bonus__faq-qtext {
    flex-grow: 1;
    margin-right: 10px;
}

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

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

.page-promotions-new-user-bonus__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Final CTA Section */
.page-promotions-new-user-bonus__final-cta {
    background-color: var(--bg);
    padding-bottom: 80px;
}

.page-promotions-new-user-bonus__final-cta .page-promotions-new-user-bonus__section-title {
    color: var(--gold-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-new-user-bonus__hero-description {
        font-size: 18px;
    }

    .page-promotions-new-user-bonus__step-item {
        flex-direction: column;
        text-align: center;
    }

    .page-promotions-new-user-bonus__step-item--reverse {
        flex-direction: column;
    }

    .page-promotions-new-user-bonus__step-image {
        max-width: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .page-promotions-new-user-bonus__section {
        padding: 40px 0;
    }

    .page-promotions-new-user-bonus__container,
    .page-promotions-new-user-bonus__cta-buttons,
    .page-promotions-new-user-bonus__grid,
    .page-promotions-new-user-bonus__steps-list,
    .page-promotions-new-user-bonus__game-list,
    .page-promotions-new-user-bonus__terms-list,
    .page-promotions-new-user-bonus__faq-list {
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-promotions-new-user-bonus__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px !important;
    }

    .page-promotions-new-user-bonus__main-title {
        font-size: clamp(28px, 8vw, 48px);
    }

    .page-promotions-new-user-bonus__hero-description {
        font-size: 16px;
    }

    .page-promotions-new-user-bonus__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-promotions-new-user-bonus__btn-primary,
    .page-promotions-new-user-bonus__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 16px;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-promotions-new-user-bonus__btn-primary--large {
        padding: 15px 30px;
        font-size: 18px;
    }

    .page-promotions-new-user-bonus__section-title {
        font-size: clamp(24px, 7vw, 36px);
        margin-bottom: 30px;
    }

    .page-promotions-new-user-bonus__text-block {
        font-size: 16px;
    }

    .page-promotions-new-user-bonus__card {
        padding: 20px;
    }

    .page-promotions-new-user-bonus__card-title {
        font-size: 20px;
    }

    .page-promotions-new-user-bonus__card-text {
        font-size: 15px;
    }

    .page-promotions-new-user-bonus__step-item {
        padding: 20px;
        gap: 20px;
    }

    .page-promotions-new-user-bonus__step-title {
        font-size: 22px;
    }

    .page-promotions-new-user-bonus__step-text,
    .page-promotions-new-user-bonus__game-item,
    .page-promotions-new-user-bonus__terms-item,
    .page-promotions-new-user-bonus__faq-question,
    .page-promotions-new-user-bonus__faq-answer {
        font-size: 15px;
    }

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

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

    /* Images & Videos responsive */
    .page-promotions-new-user-bonus img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-promotions-new-user-bonus__hero-image-wrapper,
    .page-promotions-new-user-bonus__step-image,
    .page-promotions-new-user-bonus__card-image,
    .page-promotions-new-user-bonus__container,
    .page-promotions-new-user-bonus__section,
    .page-promotions-new-user-bonus__card,
    .page-promotions-new-user-bonus__cta-buttons,
    .page-promotions-new-user-bonus__grid,
    .page-promotions-new-user-bonus__steps-list,
    .page-promotions-new-user-bonus__game-list,
    .page-promotions-new-user-bonus__terms-list,
    .page-promotions-new-user-bonus__faq-list,
    .page-promotions-new-user-bonus__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
}