/* style/promotions-new-user-bonus.css */
.page-promotions-new-user-bonus {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-promotions-new-user-bonus__hero-section {
    background: linear-gradient(135deg, #003366 0%, #004d99 100%); /* Deeper blue gradient */
    color: #fff;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

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

.page-promotions-new-user-bonus__hero-title {
    font-size: 3.2em;
    margin-bottom: 15px;
    color: #FFCC00; /* Golden yellow for highlight */
    line-height: 1.2;
}

.page-promotions-new-user-bonus__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    font-weight: 300;
}

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

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

.page-promotions-new-user-bonus__section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    border-radius: 8px;
}

.page-promotions-new-user-bonus__section:nth-of-type(even) {
    background-color: #f0f5fa; /* Light blue-gray for alternating sections */
}

.page-promotions-new-user-bonus__section-title {
    font-size: 2.5em;
    color: #003366;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.page-promotions-new-user-bonus__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFCC00;
    border-radius: 2px;
}

.page-promotions-new-user-bonus__section-text {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 25px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-new-user-bonus__cta-button {
    display: inline-block;
    background-color: #FFCC00; /* Golden yellow */
    color: #003366; /* Deep blue for text contrast */
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.page-promotions-new-user-bonus__cta-button:hover {
    background-color: #e6b800; /* Slightly darker yellow on hover */
    transform: translateY(-3px);
}

.page-promotions-new-user-bonus__cta-button--large {
    padding: 18px 45px;
    font-size: 1.4em;
}

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

.page-promotions-new-user-bonus__feature-item,
.page-promotions-new-user-bonus__offer-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid #eee;
}

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

.page-promotions-new-user-bonus__feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 3px 5px rgba(0,0,0,0.1));
}

.page-promotions-new-user-bonus__feature-item h3,
.page-promotions-new-user-bonus__offer-card h3 {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 15px;
}

.page-promotions-new-user-bonus__offer-image {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-promotions-new-user-bonus__offer-button {
    display: inline-block;
    background-color: #003366;
    color: #FFCC00;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.page-promotions-new-user-bonus__offer-button:hover {
    background-color: #004d99;
}

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

.page-promotions-new-user-bonus__step-item {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    padding-top: 60px;
}

.page-promotions-new-user-bonus__step-number {
    position: absolute;
    top: 20px;
    left: 25px;
    background-color: #FFCC00;
    color: #003366;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-user-bonus__step-item h3 {
    font-size: 1.3em;
    color: #003366;
    margin-bottom: 10px;
}

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

.page-promotions-new-user-bonus__numbered-list {
    list-style: none;
    counter-reset: my-counter;
    text-align: left;
    max-width: 900px;
    margin: 40px auto;
    padding-left: 0;
}

.page-promotions-new-user-bonus__numbered-list li {
    counter-increment: my-counter;
    margin-bottom: 20px;
    padding-left: 50px;
    position: relative;
    font-size: 1.1em;
    color: #444;
}

.page-promotions-new-user-bonus__numbered-list li::before {
    content: counter(my-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #003366;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2em;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-user-bonus__app-download {
    background-color: #003366; /* Deep blue background */
    color: #fff;
    padding: 80px 20px;
}

.page-promotions-new-user-bonus__app-download .page-promotions-new-user-bonus__section-title {
    color: #FFCC00;
}

.page-promotions-new-user-bonus__app-download .page-promotions-new-user-bonus__section-text {
    color: #e0e0e0;
}

.page-promotions-new-user-bonus__app-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-promotions-new-user-bonus__app-text-wrapper {
    max-width: 600px;
    text-align: center;
}

.page-promotions-new-user-bonus__app-benefits-list {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    max-width: 400px;
    text-align: left;
}

.page-promotions-new-user-bonus__app-benefits-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-promotions-new-user-bonus__app-benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFCC00;
    font-weight: bold;
    font-size: 1.3em;
    line-height: 1;
}

.page-promotions-new-user-bonus__app-image-wrapper {
    max-width: 400px;
    width: 100%;
}

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

.page-promotions-new-user-bonus__faq-item {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px 30px;
    margin-bottom: 20px;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-promotions-new-user-bonus__faq-item h3 {
    color: #003366;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.page-promotions-new-user-bonus__faq-item p {
    color: #555;
    font-size: 1em;
}

.page-promotions-new-user-bonus__conclusion {
    background-color: #004d99; /* Slightly lighter blue for conclusion */
    color: #fff;
    padding: 80px 20px;
}

.page-promotions-new-user-bonus__conclusion .page-promotions-new-user-bonus__section-title {
    color: #FFCC00;
}

.page-promotions-new-user-bonus__conclusion .page-promotions-new-user-bonus__section-text {
    color: #e0e0e0;
}

.page-promotions-new-user-bonus .highlight-text {
    color: #FFCC00;
    font-weight: bold;
}

/* Responsive Design */
@media (min-width: 768px) {
    .page-promotions-new-user-bonus__hero-section {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
        padding: 100px 40px;
    }

    .page-promotions-new-user-bonus__hero-content {
        text-align: left;
        margin-right: 40px;
    }

    .page-promotions-new-user-bonus__hero-image-wrapper {
        margin-top: 0;
    }

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

    .page-promotions-new-user-bonus__hero-subtitle {
        font-size: 1.6em;
    }

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

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

    .page-promotions-new-user-bonus__section-title::after {
        width: 120px;
    }

    .page-promotions-new-user-bonus__app-content {
        flex-direction: row;
        text-align: left;
        justify-content: center;
    }

    .page-promotions-new-user-bonus__app-text-wrapper {
        text-align: left;
        margin-right: 40px;
    }

    .page-promotions-new-user-bonus__app-benefits-list {
        margin-left: 0;
    }
}

@media (min-width: 1024px) {
    .page-promotions-new-user-bonus__hero-section {
        padding: 120px 60px;
    }

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

    .page-promotions-new-user-bonus__section {
        padding: 100px 60px;
    }

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