:root {
    --primary-color: #017439;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --button-register-bg: #C30808;
    --button-register-text: #FFFF00;
}

/* General page styling */
.page-promotions-new-user-bonus {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark); /* Default text color for light backgrounds */
    background-color: var(--secondary-color); /* Body background from shared.css is var(--secondary-color), which is #FFFFFF. So default text should be dark. */
}

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

.page-promotions-new-user-bonus__section-title {
    font-size: 38px;
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.3;
}

.page-promotions-new-user-bonus__section-intro {
    font-size: 18px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: #555555;
}

/* 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: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    background: linear-gradient(135deg, var(--primary-color), #004d2b); /* Darker green gradient for hero background */
    color: var(--text-light);
}

.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;
    z-index: 1; /* Ensure content is above any potential overlays */
}

.page-promotions-new-user-bonus__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-promotions-new-user-bonus__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user-bonus__hero-content {
    text-align: center;
    width: 100%;
}

.page-promotions-new-user-bonus__main-title {
    font-size: 52px;
    font-weight: 900;
    color: var(--button-register-text); /* Use yellow for main title for contrast */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-new-user-bonus__description {
    font-size: 20px;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.page-promotions-new-user-bonus__cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: var(--button-register-bg); /* Custom register color */
    color: var(--button-register-text); /* Custom register font color */
    text-decoration: none;
    border-radius: 8px;
    font-size: 22px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user-bonus__cta-button:hover {
    background: #e00b0b; /* Slightly darker red */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Benefits Section */
.page-promotions-new-user-bonus__benefits-section {
    padding: 80px 0;
    background-color: var(--secondary-color); /* Light background */
}

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

.page-promotions-new-user-bonus__benefit-item {
    padding: 30px;
    border-radius: 10px;
    background-color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.page-promotions-new-user-bonus__benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

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

/* Promotion Details Section */
.page-promotions-new-user-bonus__promotion-details-section {
    padding: 80px 0;
    background-color: var(--primary-color); /* Dark background */
    color: var(--text-light);
}

.page-promotions-new-user-bonus__promotion-details-section .page-promotions-new-user-bonus__section-title,
.page-promotions-new-user-bonus__promotion-details-section .page-promotions-new-user-bonus__section-intro {
    color: var(--text-light);
}

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

.page-promotions-new-user-bonus__promotion-card {
    background-color: var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    text-align: center;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-dark); /* Text color for cards on dark background */
}

.page-promotions-new-user-bonus__promotion-card img {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    margin-bottom: 25px;
}

.page-promotions-new-user-bonus__promotion-card-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding: 0 20px;
}

.page-promotions-new-user-bonus__promotion-card-text {
    font-size: 16px;
    color: #555555;
    margin-bottom: 25px;
    padding: 0 20px;
    flex-grow: 1;
}

.page-promotions-new-user-bonus__btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--button-register-bg); /* Custom register color */
    color: var(--button-register-text); /* Custom register font color */
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-user-bonus__btn-primary:hover {
    background: #e00b0b; /* Slightly darker red */
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user-bonus__terms-conditions {
    margin-top: 60px;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.1); /* Light background for terms on dark section */
    border-radius: 10px;
    color: var(--text-light);
}

.page-promotions-new-user-bonus__terms-title {
    font-size: 28px;
    font-weight: bold;
    color: var(--button-register-text); /* Yellow for terms title */
    margin-bottom: 20px;
    text-align: center;
}

.page-promotions-new-user-bonus__terms-list {
    list-style-type: disc;
    padding-left: 25px;
    font-size: 16px;
    line-height: 1.8;
}

.page-promotions-new-user-bonus__terms-list li {
    margin-bottom: 10px;
    color: var(--text-light);
}


/* How to Claim Section */
.page-promotions-new-user-bonus__how-to-claim-section {
    padding: 80px 0;
    background-color: var(--secondary-color); /* Light background */
}

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

.page-promotions-new-user-bonus__step-item {
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

.page-promotions-new-user-bonus__step-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-promotions-new-user-bonus__step-item img {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: contain;
    margin-bottom: 25px;
    border-radius: 8px;
}

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

.page-promotions-new-user-bonus__step-text {
    font-size: 16px;
    color: #555555;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-promotions-new-user-bonus__btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-user-bonus__btn-secondary:hover {
    filter: brightness(1.2); /* Slightly brighter */
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.3);
}

/* Why Join Section */
.page-promotions-new-user-bonus__why-join-section {
    padding: 80px 0;
    background-color: var(--primary-color); /* Dark background */
    color: var(--text-light);
}

.page-promotions-new-user-bonus__why-join-section .page-promotions-new-user-bonus__section-title,
.page-promotions-new-user-bonus__why-join-section .page-promotions-new-user-bonus__section-intro {
    color: var(--text-light);
}

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

.page-promotions-new-user-bonus__feature-item {
    background-color: var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    text-align: center;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-dark); /* Text color for cards on dark background */
}

.page-promotions-new-user-bonus__feature-item img {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    margin-bottom: 25px;
}

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

.page-promotions-new-user-bonus__feature-text {
    font-size: 16px;
    color: #555555;
    margin-bottom: 25px;
    padding: 0 20px;
    flex-grow: 1;
}

.page-promotions-new-user-bonus__cta-section-bottom {
    margin-top: 60px;
    text-align: center;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.1); /* Light background for CTA on dark section */
    border-radius: 10px;
}

.page-promotions-new-user-bonus__cta-text {
    font-size: 22px;
    color: var(--text-light);
    margin-bottom: 30px;
    font-weight: 500;
}

/* FAQ Section */
.page-promotions-new-user-bonus__faq-section {
    padding: 80px 0;
    background-color: var(--secondary-color); /* Light background */
}

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

.page-promotions-new-user-bonus__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-promotions-new-user-bonus__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    transition: background-color 0.3s ease;
}

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

.page-promotions-new-user-bonus__faq-question h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

.page-promotions-new-user-bonus__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    color: #888;
    transition: transform 0.3s ease;
}

.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 {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    background-color: #fefefe;
}

.page-promotions-new-user-bonus__faq-item.active .page-promotions-new-user-bonus__faq-answer {
    max-height: 300px; /* Adjust based on expected content height */
    padding: 20px 25px;
}

.page-promotions-new-user-bonus__faq-answer p {
    margin: 0;
    font-size: 16px;
    color: #555555;
    line-height: 1.7;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .page-promotions-new-user-bonus__main-title {
        font-size: 42px;
    }

    .page-promotions-new-user-bonus__section-title {
        font-size: 32px;
    }

    .page-promotions-new-user-bonus__hero-section {
        padding-top: var(--header-offset, 100px);
    }
}

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

    .page-promotions-new-user-bonus__description {
        font-size: 18px;
    }

    .page-promotions-new-user-bonus__cta-button {
        padding: 15px 35px;
        font-size: 20px;
    }

    .page-promotions-new-user-bonus__section-title {
        font-size: 28px;
    }

    .page-promotions-new-user-bonus__section-intro {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .page-promotions-new-user-bonus__benefits-grid,
    .page-promotions-new-user-bonus__promotion-grid,
    .page-promotions-new-user-bonus__steps-grid,
    .page-promotions-new-user-bonus__features-grid {
        grid-template-columns: 1fr;
    }

    .page-promotions-new-user-bonus__benefit-item,
    .page-promotions-new-user-bonus__promotion-card,
    .page-promotions-new-user-bonus__step-item,
    .page-promotions-new-user-bonus__feature-item {
        padding: 25px;
    }

    .page-promotions-new-user-bonus__promotion-card img {
        height: 200px;
    }

    .page-promotions-new-user-bonus__terms-conditions,
    .page-promotions-new-user-bonus__cta-section-bottom {
        padding: 30px;
    }

    .page-promotions-new-user-bonus__terms-title {
        font-size: 24px;
    }

    .page-promotions-new-user-bonus__faq-question h3 {
        font-size: 18px;
    }

    .page-promotions-new-user-bonus__faq-answer p {
        font-size: 15px;
    }
}

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

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

    .page-promotions-new-user-bonus__cta-button {
        padding: 12px 25px;
        font-size: 18px;
    }

    .page-promotions-new-user-bonus__section-title {
        font-size: 24px;
    }

    .page-promotions-new-user-bonus__section-intro {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .page-promotions-new-user-bonus__benefit-title,
    .page-promotions-new-user-bonus__promotion-card-title,
    .page-promotions-new-user-bonus__step-title,
    .page-promotions-new-user-bonus__feature-title {
        font-size: 22px;
    }

    .page-promotions-new-user-bonus__btn-primary,
    .page-promotions-new-user-bonus__btn-secondary {
        padding: 10px 20px;
        font-size: 16px;
    }

    .page-promotions-new-user-bonus__terms-conditions,
    .page-promotions-new-user-bonus__cta-section-bottom {
        padding: 20px;
    }

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

    .page-promotions-new-user-bonus__terms-list,
    .page-promotions-new-user-bonus__faq-answer p {
        font-size: 14px;
    }

    .page-promotions-new-user-bonus__faq-question h3 {
        font-size: 16px;
    }
}