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

.page-index-new-user-bonus {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

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

.page-index-new-user-bonus__hero-section {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-new-user-bonus__hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 193, 7, 0.2);
    border-radius: 50%;
    filter: blur(50px);
    animation: page-index-new-user-bonus__float 10s ease-in-out infinite alternate;
}

.page-index-new-user-bonus__hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: rgba(0, 123, 255, 0.2);
    border-radius: 50%;
    filter: blur(60px);
    animation: page-index-new-user-bonus__float 12s ease-in-out infinite alternate-reverse;
}

@keyframes page-index-new-user-bonus__float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(20px, 20px) scale(1.05); }
}

.page-index-new-user-bonus__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: #ffc107;
}

.page-index-new-user-bonus__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-new-user-bonus__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: 2px solid transparent;
}

.page-index-new-user-bonus__btn--primary {
    background-color: #ffc107;
    color: #000;
    border-color: #ffc107;
}

.page-index-new-user-bonus__btn--primary:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.page-index-new-user-bonus__btn--secondary {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
    padding: 10px 20px;
    font-size: 1em;
}

.page-index-new-user-bonus__btn--secondary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.page-index-new-user-bonus__btn--link {
    background: none;
    color: #007bff;
    border: none;
    text-decoration: underline;
    padding: 0;
    font-size: 1em;
}

.page-index-new-user-bonus__btn--link:hover {
    color: #0056b3;
    text-decoration: none;
}

.page-index-new-user-bonus__btn--app {
    background-color: #333;
    color: #fff;
    border-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    margin: 10px;
    min-width: 200px;
}

.page-index-new-user-bonus__btn--app:hover {
    background-color: #555;
    border-color: #555;
}

.page-index-new-user-bonus__btn--outline {
    background: none;
    color: #007bff;
    border-color: #007bff;
}

.page-index-new-user-bonus__btn--outline:hover {
    background-color: #007bff;
    color: #fff;
}

.page-index-new-user-bonus__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
    margin: 10px;
}

.page-index-new-user-bonus__section-title {
    font-size: 2.5em;
    color: #007bff;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

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

.page-index-new-user-bonus__intro-section,
.page-index-new-user-bonus__offer-details-section,
.page-index-new-user-bonus__how-to-register-section,
.page-index-new-user-bonus__app-download-section,
.page-index-new-user-bonus__responsible-gambling-section,
.page-index-new-user-bonus__faq-section,
.page-index-new-user-bonus__final-cta-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.page-index-new-user-bonus__intro-section {
    background-color: #fff;
}

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

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

.page-index-new-user-bonus__feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index-new-user-bonus__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 123, 255, 0.2));
}

.page-index-new-user-bonus__feature-title {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 15px;
}

.page-index-new-user-bonus__feature-description {
    color: #555;
}

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

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

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

.page-index-new-user-bonus__offer-card-img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(255, 193, 7, 0.3));
}

.page-index-new-user-bonus__offer-card-title {
    font-size: 1.6em;
    color: #007bff;
    margin-bottom: 15px;
}

.page-index-new-user-bonus__offer-card-description {
    color: #555;
    margin-bottom: 25px;
}

.page-index-new-user-bonus__note {
    text-align: center;
    margin-top: 30px;
    font-style: italic;
    color: #777;
}

.page-index-new-user-bonus__how-to-register-section {
    background-color: #eaf6ff; /* Light blue background */
}

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

.page-index-new-user-bonus__steps-list li {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding-left: 90px;
}

.page-index-new-user-bonus__steps-list li::before {
    content: attr(data-step-number);
    position: absolute;
    left: 30px;
    top: 30px;
    background-color: #007bff;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(0, 123, 255, 0.4);
}

.page-index-new-user-bonus__steps-list li:nth-child(1)::before { content: '1'; }
.page-index-new-user-bonus__steps-list li:nth-child(2)::before { content: '2'; }
.page-index-new-user-bonus__steps-list li:nth-child(3)::before { content: '3'; }
.page-index-new-user-bonus__steps-list li:nth-child(4)::before { content: '4'; }

.page-index-new-user-bonus__step-title {
    font-size: 1.8em;
    color: #007bff;
    margin-bottom: 10px;
}

.page-index-new-user-bonus__step-description {
    color: #555;
    margin-bottom: 15px;
}

.page-index-new-user-bonus__step-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-index-new-user-bonus__app-download-section {
    text-align: center;
    background-color: #fff;
}

.page-index-new-user-bonus__app-download-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
    margin-bottom: 30px;
}

.page-index-new-user-bonus__app-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    filter: invert(1);
}

.page-index-new-user-bonus__app-screenshot {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
}

.page-index-new-user-bonus__responsible-gambling-section {
    background-color: #f0f8ff; /* Very light blue */
    border-top: 1px dashed #cceeff;
    border-bottom: 1px dashed #cceeff;
}

.page-index-new-user-bonus__faq-section {
    background-color: #fff;
}

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

.page-index-new-user-bonus__faq-question {
    font-size: 1.3em;
    color: #007bff;
    margin-bottom: 10px;
}

.page-index-new-user-bonus__faq-answer {
    color: #555;
}

.page-index-new-user-bonus__final-cta-section {
    background: linear-gradient(45deg, #007bff, #ffc107);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.page-index-new-user-bonus__final-cta-section .page-index-new-user-bonus__section-title {
    color: #fff;
}

.page-index-new-user-bonus__final-cta-section .page-index-new-user-bonus__section-title::after {
    background-color: #fff;
}

.page-index-new-user-bonus__final-cta-section .page-index-new-user-bonus__text-content {
    color: #f0f0f0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-index-new-user-bonus__hero-title {
        font-size: 2.5em;
    }
    .page-index-new-user-bonus__hero-subtitle {
        font-size: 1.2em;
    }
    .page-index-new-user-bonus__section-title {
        font-size: 2em;
    }
    .page-index-new-user-bonus__feature-grid,
    .page-index-new-user-bonus__offer-card-grid {
        grid-template-columns: 1fr;
    }
    .page-index-new-user-bonus__steps-list li {
        padding-left: 30px;
        padding-top: 70px;
    }
    .page-index-new-user-bonus__steps-list li::before {
        left: 50%;
        top: 20px;
        transform: translateX(-50%);
    }
    .page-index-new-user-bonus__app-download-links {
        flex-direction: column;
        align-items: center;
    }
    .page-index-new-user-bonus__btn--app {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .page-index-new-user-bonus__hero-title {
        font-size: 2em;
    }
    .page-index-new-user-bonus__hero-subtitle {
        font-size: 1em;
    }
    .page-index-new-user-bonus__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-index-new-user-bonus__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}