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

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

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

.page-promotions-new-user-bonus__section-title {
    font-size: clamp(2em, 5vw, 2.8em);
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

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

.page-promotions-new-user-bonus__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding */
    padding-bottom: 60px;
    text-align: center;
    overflow: hidden;
    box-sizing: border-box;
}

.page-promotions-new-user-bonus__hero-image-wrapper {
    width: 100%;
    max-height: 700px;
    overflow: hidden;
}

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

.page-promotions-new-user-bonus__hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 20px;
    margin-top: -100px; /* Pull content up slightly to overlap image bottom */
    background: rgba(8, 22, 15, 0.85); /* Slightly transparent background for readability */
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
}

.page-promotions-new-user-bonus__main-title {
    font-size: clamp(2.5em, 6vw, 3.5em);
    color: var(--text-main);
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.1;
}

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

.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-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    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(--button-gradient);
    color: #ffffff;
    border: 2px solid var(--glow-color);
    box-shadow: 0 0 15px var(--glow-color);
}

.page-promotions-new-user-bonus__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px var(--glow-color);
}

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

.page-promotions-new-user-bonus__btn-secondary:hover {
    background: var(--glow-color);
    color: var(--main-bg);
    transform: translateY(-3px);
}

.page-promotions-new-user-bonus__intro-section,
.page-promotions-new-user-bonus__terms-section,
.page-promotions-new-user-bonus__why-choose-section {
    background-color: var(--card-bg);
    padding: 60px 0;
    border-bottom: 1px solid var(--divider-color);
}

.page-promotions-new-user-bonus__how-to-claim-section,
.page-promotions-new-user-bonus__other-promos-section,
.page-promotions-new-user-bonus__faq-section,
.page-promotions-new-user-bonus__cta-final-section {
    background-color: var(--main-bg);
    padding: 60px 0;
    border-bottom: 1px solid var(--divider-color);
}

.page-promotions-new-user-bonus__content-image {
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    width: 100%;
    height: auto;
    object-fit: cover;
    max-width: 800px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

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

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

.page-promotions-new-user-bonus__step-description {
    color: var(--text-secondary);
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-promotions-new-user-bonus__step-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.page-promotions-new-user-bonus__terms-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-promotions-new-user-bonus__list-item {
    background-color: var(--main-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    color: var(--text-secondary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions-new-user-bonus__list-item strong {
    color: var(--text-main);
    font-size: 1.1em;
    display: block;
    margin-bottom: 5px;
}

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

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

.page-promotions-new-user-bonus__promo-card,
.page-promotions-new-user-bonus__feature-card {
    background-color: var(--card-bg);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.page-promotions-new-user-bonus__promo-card-title,
.page-promotions-new-user-bonus__feature-title {
    font-size: 1.6em;
    color: var(--gold-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions-new-user-bonus__promo-card-description,
.page-promotions-new-user-bonus__feature-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
    flex-grow: 1;
}

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

.page-promotions-new-user-bonus__faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--text-main);
}

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

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

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

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

.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: 15px 25px 20px;
    font-size: 1.1em;
    color: var(--text-secondary);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .page-promotions-new-user-bonus__container {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-promotions-new-user-bonus {
        font-size: 16px;
        line-height: 1.6;
    }

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

    .page-promotions-new-user-bonus__hero-content {
        margin-top: -50px;
        padding: 15px;
        border-radius: 10px;
    }

    .page-promotions-new-user-bonus__main-title {
        font-size: 2.2em;
        margin-bottom: 15px;
    }

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

    .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: 1em;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-promotions-new-user-bonus__step-card,
    .page-promotions-new-user-bonus__promo-card,
    .page-promotions-new-user-bonus__feature-card,
    .page-promotions-new-user-bonus__faq-item {
        padding: 20px;
        border-radius: 10px;
    }

    .page-promotions-new-user-bonus__content-image,
    .page-promotions-new-user-bonus__step-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .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__video-section {
        padding-top: 10px !important; /* body has padding-top, this is for decor */
    }

    .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__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }

    .page-promotions-new-user-bonus__faq-answer {
        padding: 10px 20px 15px;
        font-size: 0.95em;
    }
}

/* Ensure content images are at least 200px where applicable */
.page-promotions-new-user-bonus__content-image,
.page-promotions-new-user-bonus__step-image {
    min-width: 200px;
    min-height: 200px;
}

/* Override specific styles for better contrast if needed (emergency fix) */
.page-promotions-new-user-bonus__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.page-promotions-new-user-bonus__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}