/* style/promotions-new-user-bonus.css */
.page-promotions-new-user-bonus {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

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

.page-promotions-new-user-bonus__hero-section {
    background: linear-gradient(135deg, #0A192F 0%, #30475E 50%, #FFD700 100%);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.page-promotions-new-user-bonus__hero-content {
    max-width: 800px;
}

.page-promotions-new-user-bonus__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: 700;
    color: #fff;
}

.page-promotions-new-user-bonus__hero-title .highlight {
    color: #FFD700;
}

.page-promotions-new-user-bonus__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-promotions-new-user-bonus__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A192F;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-promotions-new-user-bonus__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-promotions-new-user-bonus__hero-image-wrapper {
    width: 100%;
    max-width: 600px;
    margin-top: 30px;
}

.page-promotions-new-user-bonus__hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user-bonus__section {
    padding: 60px 0;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.page-promotions-new-user-bonus__section:nth-of-type(even) {
    background-color: #f0f2f5;
}

.page-promotions-new-user-bonus__section-title {
    font-size: 2.5em;
    color: #0A192F;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.page-promotions-new-user-bonus__section-title .highlight {
    color: #FFD700;
}

.page-promotions-new-user-bonus__text-content {
    font-size: 1.1em;
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
}

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

.page-promotions-new-user-bonus__grid-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-new-user-bonus__grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.page-promotions-new-user-bonus__grid-image {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-promotions-new-user-bonus__grid-title {
    font-size: 1.5em;
    color: #0A192F;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-promotions-new-user-bonus__grid-description {
    font-size: 1em;
    color: #555;
}

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

.page-promotions-new-user-bonus__steps-list li {
    background-color: #fff;
    margin-bottom: 20px;
    padding: 25px;
    border-left: 5px solid #FFD700;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-promotions-new-user-bonus__step-title {
    font-size: 1.4em;
    color: #0A192F;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-promotions-new-user-bonus__step-description {
    color: #555;
    font-size: 1.05em;
}

.page-promotions-new-user-bonus__inline-button {
    display: inline-block;
    background-color: #0A192F;
    color: #FFD700;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.page-promotions-new-user-bonus__inline-button:hover {
    background-color: #1a324b;
}

.page-promotions-new-user-bonus__process-image {
    width: 100%;
    max-width: 700px;
    display: block;
    margin: 40px auto 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.page-promotions-new-user-bonus__terms-list li {
    background-color: #fefefe;
    margin-bottom: 15px;
    padding: 20px;
    border-left: 4px solid #0A192F;
    border-radius: 8px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
    color: #444;
}

.page-promotions-new-user-bonus__terms-list li strong {
    color: #0A192F;
}

.page-promotions-new-user-bonus__tips-list {
    list-style: disc inside;
    padding-left: 20px;
    margin-top: 30px;
    color: #444;
}

.page-promotions-new-user-bonus__tips-list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-promotions-new-user-bonus__advice-image {
    width: 100%;
    max-width: 600px;
    display: block;
    margin: 40px auto 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-new-user-bonus__faq-item {
    background-color: #fefefe;
    border: 1px solid #eee;
    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 {
    background-color: #0A192F;
    color: #FFD700;
    padding: 18px 25px;
    margin: 0;
    font-size: 1.3em;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

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

.page-promotions-new-user-bonus__faq-answer {
    padding: 20px 25px;
    color: #555;
    font-size: 1.05em;
    display: none;
    background-color: #fff;
    border-top: 1px solid #eee;
}

.page-promotions-new-user-bonus__faq-item.active .page-promotions-new-user-bonus__faq-answer {
    display: block;
}

.page-promotions-new-user-bonus__cta-final {
    background-color: #0A192F;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.page-promotions-new-user-bonus__cta-final-content {
    max-width: 900px;
}

.page-promotions-new-user-bonus__cta-final .page-promotions-new-user-bonus__section-title {
    color: #fff;
    font-size: 2.8em;
}

.page-promotions-new-user-bonus__cta-final .page-promotions-new-user-bonus__text-content {
    color: #e0e0e0;
    font-size: 1.2em;
    margin-bottom: 40px;
}

.page-promotions-new-user-bonus__cta-button--large {
    padding: 18px 40px;
    font-size: 1.25em;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-new-user-bonus__hero-section {
        flex-direction: column;
        padding: 60px 20px;
    }

    .page-promotions-new-user-bonus__hero-title {
        font-size: 2.5em;
    }

    .page-promotions-new-user-bonus__hero-description {
        font-size: 1.1em;
    }

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

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

    .page-promotions-new-user-bonus__cta-final .page-promotions-new-user-bonus__section-title {
        font-size: 2.2em;
    }
}

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

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

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

    .page-promotions-new-user-bonus__section {
        padding: 40px 0;
    }

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

    .page-promotions-new-user-bonus__grid {
        grid-template-columns: 1fr;
    }

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

    .page-promotions-new-user-bonus__inline-button {
        padding: 8px 15px;
        font-size: 0.9em;
    }

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

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

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

    .page-promotions-new-user-bonus__cta-button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

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

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

    .page-promotions-new-user-bonus__text-content,
    .page-promotions-new-user-bonus__grid-description,
    .page-promotions-new-user-bonus__step-description,
    .page-promotions-new-user-bonus__terms-list li,
    .page-promotions-new-user-bonus__tips-list li,
    .page-promotions-new-user-bonus__faq-answer {
        font-size: 0.95em;
    }

    .page-promotions-new-user-bonus__faq-question {
        font-size: 1em;
    }

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