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

/* Custom Colors */
:root {
    --color-primary: #11A84E;
    --color-secondary: #22C768;
    --color-button-gradient-start: #2AD16F;
    --color-button-gradient-end: #13994A;
    --color-card-bg: #11271B;
    --color-background: #08160F;
    --color-text-main: #F2FFF6;
    --color-text-secondary: #A7D9B8;
    --color-border: #2E7A4E;
    --color-glow: #57E38D;
    --color-gold: #F2C14E;
    --color-divider: #1E3A2A;
    --color-deep-green: #0A4B2C;
}

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

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

.page-promotions-new-user-bonus__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-promotions-new-user-bonus__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

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

.page-promotions-new-user-bonus__hero-content-wrapper {
    padding: 40px 20px;
    background: rgba(8, 22, 15, 0.8);
    border-radius: 10px;
    margin-top: -80px;
    position: relative;
    z-index: 1;
    max-width: 800px;
    box-sizing: border-box;
}

.page-promotions-new-user-bonus__hero-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: var(--color-gold);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-promotions-new-user-bonus__hero-description {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 30px;
}

.page-promotions-new-user-bonus__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-promotions-new-user-bonus__btn-primary {
    background: linear-gradient(180deg, var(--color-button-gradient-start) 0%, var(--color-button-gradient-end) 100%);
    color: #ffffff;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(17, 168, 78, 0.4);
}

.page-promotions-new-user-bonus__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(17, 168, 78, 0.6);
}

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

.page-promotions-new-user-bonus__btn-secondary:hover {
    background: var(--color-primary);
    color: #ffffff;
}

.page-promotions-new-user-bonus__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--color-gold);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-promotions-new-user-bonus__section-description {
    font-size: 1rem;
    color: var(--color-text-secondary);
    text-align: center;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-new-user-bonus__benefits-section,
.page-promotions-new-user-bonus__terms-section,
.page-promotions-new-user-bonus__faq-section {
    padding: 60px 0;
    background-color: var(--color-deep-green);
}

.page-promotions-new-user-bonus__how-to-claim-section,
.page-promotions-new-user-bonus__why-choose-section,
.page-promotions-new-user-bonus__cta-section {
    padding: 60px 0;
    background-color: var(--color-background);
}

.page-promotions-new-user-bonus__dark-section {
    background-color: var(--color-card-bg);
    color: var(--color-text-main);
}

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

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

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

.page-promotions-new-user-bonus__card-image,
.page-promotions-new-user-bonus__feature-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,
.page-promotions-new-user-bonus__step-title,
.page-promotions-new-user-bonus__feature-title {
    font-size: 1.5rem;
    color: var(--color-text-main);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-promotions-new-user-bonus__card-text,
.page-promotions-new-user-bonus__step-text,
.page-promotions-new-user-bonus__feature-text {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.page-promotions-new-user-bonus__step-icon {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 auto 20px auto;
    box-shadow: 0 0 15px var(--color-glow);
}

.page-promotions-new-user-bonus__terms-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.page-promotions-new-user-bonus__term-item {
    background-color: var(--color-background);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--color-divider);
}

.page-promotions-new-user-bonus__term-title {
    font-size: 1.3rem;
    color: var(--color-text-main);
    margin-bottom: 10px;
    font-weight: 600;
}

.page-promotions-new-user-bonus__term-text {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.page-promotions-new-user-bonus__faq-list {
    margin-top: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-new-user-bonus__faq-item {
    background-color: var(--color-background);
    border: 1px solid var(--color-divider);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-promotions-new-user-bonus__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text-main);
    cursor: pointer;
    background-color: var(--color-deep-green);
    border-bottom: 1px solid var(--color-divider);
    list-style: none; /* For details/summary */
}

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

.page-promotions-new-user-bonus__faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-gold);
    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: 15px 25px 20px;
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    background-color: var(--color-background);
}

.page-promotions-new-user-bonus__cta-final {
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions-new-user-bonus__hero-content-wrapper {
        margin-top: -60px;
        padding: 30px;
    }
}

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

    .page-promotions-new-user-bonus__hero-title {
        font-size: 2rem;
    }

    .page-promotions-new-user-bonus__hero-description {
        font-size: 1rem;
    }

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

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

    .page-promotions-new-user-bonus__section-description {
        font-size: 0.9rem;
    }

    .page-promotions-new-user-bonus__card-grid,
    .page-promotions-new-user-bonus__steps-grid,
    .page-promotions-new-user-bonus__feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-promotions-new-user-bonus__card,
    .page-promotions-new-user-bonus__step-card,
    .page-promotions-new-user-bonus__feature-card {
        padding: 20px;
    }

    .page-promotions-new-user-bonus__card-title,
    .page-promotions-new-user-bonus__step-title,
    .page-promotions-new-user-bonus__feature-title {
        font-size: 1.3rem;
    }

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

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

    /* Mobile image responsiveness */
    .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-section,
    .page-promotions-new-user-bonus__benefits-section,
    .page-promotions-new-user-bonus__how-to-claim-section,
    .page-promotions-new-user-bonus__terms-section,
    .page-promotions-new-user-bonus__why-choose-section,
    .page-promotions-new-user-bonus__faq-section,
    .page-promotions-new-user-bonus__cta-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-promotions-new-user-bonus__hero-content-wrapper {
        margin-top: -40px;
    }

    /* Mobile button responsiveness */
    .page-promotions-new-user-bonus__cta-button,
    .page-promotions-new-user-bonus__btn-primary,
    .page-promotions-new-user-bonus__btn-secondary,
    .page-promotions-new-user-bonus a[class*="button"],
    .page-promotions-new-user-bonus a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .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__cta-buttons {
        display: flex;
        flex-direction: column; 
    }
}

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

    .page-promotions-new-user-bonus__hero-description {
        font-size: 0.9rem;
    }

    .page-promotions-new-user-bonus__section-title {
        font-size: 1.5rem;
    }
}