/* style/promotions-new-user-bonus.css */
.page-promotions-new-user-bonus {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #E0E0E0; /* Light grey for general text on dark background */
    background-color: #0A1931; /* Deep blue primary background */
    line-height: 1.6;
}

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

.page-promotions-new-user-bonus__hero-section {
    background: linear-gradient(135deg, #0A1931 0%, #2a3d58 100%); /* Dark blue gradient */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-new-user-bonus__hero-title {
    font-size: 3.5em;
    color: #FFC107; /* Bright gold for main title */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

.page-promotions-new-user-bonus__hero-subtitle {
    font-size: 1.25em;
    color: #E0E0E0;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-promotions-new-user-bonus__cta-button {
    display: inline-block;
    background-color: #FFC107; /* Bright gold for CTA button */
    color: #0A1931; /* Deep blue for button text */
    padding: 15px 30px;
    border-radius: 50px;
    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: #e6b000; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.page-promotions-new-user-bonus__cta-button--centered {
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: fit-content;
}

.page-promotions-new-user-bonus__cta-button--large {
    padding: 20px 40px;
    font-size: 1.3em;
}

.page-promotions-new-user-bonus__hero-image-wrapper {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-promotions-new-user-bonus__section-title {
    font-size: 2.5em;
    color: #FFC107; /* Bright gold for section titles */
    text-align: center;
    margin-top: 60px;
    margin-bottom: 30px;
    font-weight: 600;
}

.page-promotions-new-user-bonus__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: #CCCCCC;
}

.page-promotions-new-user-bonus__section-description--note {
    font-style: italic;
    font-size: 0.95em;
    text-align: center;
    margin-top: 30px;
    color: #AAAAAA;
}

.page-promotions-new-user-bonus__benefits-section {
    background-color: #1a2a47; /* Slightly lighter deep blue */
    padding: 60px 0;
}

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

.page-promotions-new-user-bonus__benefit-item {
    background-color: #0A1931; /* Deep blue for benefit cards */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-promotions-new-user-bonus__benefit-item:hover {
    transform: translateY(-10px);
}

.page-promotions-new-user-bonus__benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(1.2);
}

.page-promotions-new-user-bonus__benefit-title {
    font-size: 1.5em;
    color: #FFC107; /* Gold for benefit titles */
    margin-bottom: 15px;
}

.page-promotions-new-user-bonus__benefit-text {
    font-size: 1em;
    color: #CCCCCC;
}

.page-promotions-new-user-bonus__bonus-details-section {
    padding: 80px 0;
    background-color: #0A1931;
}

.page-promotions-new-user-bonus__bonus-package {
    background-color: #1a2a47;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user-bonus__package-title {
    font-size: 2em;
    color: #FFC107;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 2px solid #FFC107;
    padding-bottom: 15px;
}

.page-promotions-new-user-bonus__package-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-promotions-new-user-bonus__package-content--reversed {
    flex-direction: row-reverse;
}

.page-promotions-new-user-bonus__package-image {
    width: 40%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.page-promotions-new-user-bonus__package-text {
    flex-grow: 1;
    font-size: 1.05em;
    color: #E0E0E0;
}

.page-promotions-new-user-bonus__package-text p {
    margin-bottom: 15px;
}

.page-promotions-new-user-bonus__package-text strong {
    color: #FFC107;
}

.page-promotions-new-user-bonus__package-features {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-promotions-new-user-bonus__package-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: #E0E0E0;
}

.page-promotions-new-user-bonus__feature-icon {
    color: #32CD32; /* Green checkmark */
    font-size: 1.2em;
    margin-right: 10px;
    font-weight: bold;
}

.page-promotions-new-user-bonus__how-to-claim-section {
    background-color: #1a2a47;
    padding: 80px 0;
}

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

.page-promotions-new-user-bonus__step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 20px;
    background-color: #0A1931;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-user-bonus__step-number {
    background-color: #FFC107;
    color: #0A1931;
    font-size: 1.8em;
    font-weight: bold;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

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

.page-promotions-new-user-bonus__step-title {
    font-size: 1.8em;
    color: #FFC107;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-promotions-new-user-bonus__step-content p {
    font-size: 1.05em;
    color: #E0E0E0;
    margin-bottom: 20px;
}

.page-promotions-new-user-bonus__step-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    margin-top: 15px;
}

.page-promotions-new-user-bonus__terms-section {
    padding: 80px 0;
    background-color: #0A1931;
}

.page-promotions-new-user-bonus__terms-content {
    background-color: #1a2a47;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    color: #E0E0E0;
    font-size: 1.05em;
}

.page-promotions-new-user-bonus__terms-subtitle {
    font-size: 1.6em;
    color: #FFC107;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-promotions-new-user-bonus__terms-content p {
    margin-bottom: 15px;
}

.page-promotions-new-user-bonus__read-more {
    font-style: italic;
    margin-top: 30px;
    text-align: center;
    color: #AAAAAA;
}

.page-promotions-new-user-bonus__terms-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin-top: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-new-user-bonus__faq-section {
    background-color: #1a2a47;
    padding: 80px 0;
}

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

.page-promotions-new-user-bonus__faq-item {
    background-color: #0A1931;
    border-radius: 10px;
    padding: 25px 30px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-user-bonus__faq-question {
    font-size: 1.4em;
    color: #FFC107;
    margin-top: 0;
    margin-bottom: 15px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-promotions-new-user-bonus__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFC107;
    transition: transform 0.3s ease;
}

.page-promotions-new-user-bonus__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-promotions-new-user-bonus__faq-answer {
    font-size: 1.05em;
    color: #CCCCCC;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding-top: 0;
}

.page-promotions-new-user-bonus__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding-top: 15px;
}

.page-promotions-new-user-bonus__final-cta-section {
    background: linear-gradient(45deg, #0A1931, #3a4c6a); /* Darker blue gradient */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-new-user-bonus__final-cta-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    margin-top: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions-new-user-bonus__app-download-section {
    background-color: #0A1931;
    padding: 80px 0;
    text-align: center;
}

.page-promotions-new-user-bonus__app-images {
    margin-top: 40px;
}

.page-promotions-new-user-bonus__app-mockup {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-new-user-bonus__hero-title {
        font-size: 2.8em;
    }
    .page-promotions-new-user-bonus__section-title {
        font-size: 2em;
    }
    .page-promotions-new-user-bonus__package-content {
        flex-direction: column;
        text-align: center;
    }
    .page-promotions-new-user-bonus__package-content--reversed {
        flex-direction: column;
    }
    .page-promotions-new-user-bonus__package-image {
        width: 80%;
        margin-bottom: 20px;
    }
    .page-promotions-new-user-bonus__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .page-promotions-new-user-bonus__step-number {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .page-promotions-new-user-bonus__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-new-user-bonus__hero-subtitle,
    .page-promotions-new-user-bonus__section-description {
        font-size: 1em;
    }
    .page-promotions-new-user-bonus__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-new-user-bonus__section-title {
        font-size: 1.8em;
    }
    .page-promotions-new-user-bonus__benefit-title {
        font-size: 1.3em;
    }
    .page-promotions-new-user-bonus__package-title {
        font-size: 1.7em;
    }
    .page-promotions-new-user-bonus__step-title {
        font-size: 1.5em;
    }
    .page-promotions-new-user-bonus__faq-question {
        font-size: 1.2em;
    }
}

@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.5em;
    }
    .page-promotions-new-user-bonus__cta-button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-promotions-new-user-bonus__package-image {
        width: 100%;
    }
    .page-promotions-new-user-bonus__step-image {
        max-width: 100%;
    }
}