/* style/promotions-new-user-bonus.css */
.page-promotions-new-user-bonus {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #f5e6d0; /* Light text for dark background */
    background-color: #0A192F; /* Primary dark background */
    line-height: 1.6;
}

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

.page-promotions-new-user-bonus h1,
.page-promotions-new-user-bonus h2,
.page-promotions-new-user-bonus h3 {
    color: #FFD700; /* Secondary golden color for headings */
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.2;
}

.page-promotions-new-user-bonus h1 {
    font-size: 3.2em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-new-user-bonus h2 {
    font-size: 2.5em;
    padding-top: 60px;
    margin-top: -60px; /* Offset for sticky header */
}

.page-promotions-new-user-bonus h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
}

.page-promotions-new-user-bonus p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: center;
}

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

.page-promotions-new-user-bonus .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1em;
    text-align: center;
}

.page-promotions-new-user-bonus .btn-primary {
    background-color: #FFD700;
    color: #0A192F;
    border: 2px solid #FFD700;
}

.page-promotions-new-user-bonus .btn-primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
}

.page-promotions-new-user-bonus .btn-secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    margin-left: 15px;
}

.page-promotions-new-user-bonus .btn-secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-2px);
}

.page-promotions-new-user-bonus .large-btn {
    padding: 15px 35px;
    font-size: 1.2em;
    margin-top: 30px;
}

/* Hero Section */
.page-promotions-new-user-bonus .hero-section {
    background: linear-gradient(135deg, #0A192F 0%, #1a345e 100%);
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-new-user-bonus .hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.page-promotions-new-user-bonus .hero-content {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.page-promotions-new-user-bonus .hero-content p {
    text-align: left;
    font-size: 1.2em;
    max-width: 600px;
    margin-bottom: 30px;
}

.page-promotions-new-user-bonus .hero-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.page-promotions-new-user-bonus .hero-image-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

/* Why Choose Us Section */
.page-promotions-new-user-bonus .why-choose-us-section {
    background-color: #0D203A;
    padding: 80px 0;
    text-align: center;
}

.page-promotions-new-user-bonus .why-choose-us-section p {
    max-width: 800px;
    margin: 0 auto 50px;
}

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

.page-promotions-new-user-bonus .feature-item {
    background-color: #1A2E4C;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.page-promotions-new-user-bonus .feature-item .feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-promotions-new-user-bonus .feature-item h3 {
    color: #FFD700;
    font-size: 1.6em;
    margin-bottom: 15px;
}

.page-promotions-new-user-bonus .feature-item p {
    font-size: 1em;
    text-align: left;
    color: #cccccc;
}

.page-promotions-new-user-bonus .feature-item a {
    color: #FFD700;
    text-decoration: none;
}

.page-promotions-new-user-bonus .feature-item a:hover {
    text-decoration: underline;
}

/* Bonus Details Section */
.page-promotions-new-user-bonus .bonus-details-section {
    background-color: #0A192F;
    padding: 80px 0;
    text-align: center;
}

.page-promotions-new-user-bonus .bonus-details-section p {
    max-width: 900px;
    margin: 0 auto 50px;
}

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

.page-promotions-new-user-bonus .bonus-card {
    background-color: #1A2E4C;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-promotions-new-user-bonus .bonus-card .bonus-image {
    max-width: 150px;
    height: auto;
    margin: 0 auto 25px;
    filter: drop-shadow(0 0 8px #FFD700);
}

.page-promotions-new-user-bonus .bonus-card h3 {
    color: #FFD700;
    font-size: 1.7em;
    margin-bottom: 15px;
}

.page-promotions-new-user-bonus .bonus-card p {
    font-size: 1em;
    color: #cccccc;
    text-align: center;
    flex-grow: 1;
}

.page-promotions-new-user-bonus .how-to-claim {
    margin-top: 80px;
    background-color: #1A2E4C;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user-bonus .how-to-claim h3 {
    color: #FFD700;
    font-size: 2em;
    margin-bottom: 30px;
}

.page-promotions-new-user-bonus .how-to-claim ol {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 800px;
    margin: 0 auto 30px;
}

.page-promotions-new-user-bonus .how-to-claim ol li {
    background-color: #0A192F;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    font-size: 1.1em;
    color: #f5e6d0;
    border-left: 5px solid #FFD700;
    display: flex;
    align-items: center;
}

.page-promotions-new-user-bonus .how-to-claim ol li strong {
    color: #FFD700;
    margin-right: 10px;
    flex-shrink: 0;
}

.page-promotions-new-user-bonus .how-to-claim ol li a {
    color: #FFD700;
    text-decoration: none;
}

.page-promotions-new-user-bonus .how-to-claim ol li a:hover {
    text-decoration: underline;
}

.page-promotions-new-user-bonus .call-to-action-text {
    font-size: 1.3em;
    font-weight: bold;
    margin-top: 40px;
    color: #FFD700;
}

/* App Download Section */
.page-promotions-new-user-bonus .app-download-section {
    background-color: #0D203A;
    padding: 80px 0;
    text-align: center;
}

.page-promotions-new-user-bonus .app-download-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.page-promotions-new-user-bonus .app-content {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.page-promotions-new-user-bonus .app-content h2 {
    text-align: left;
    margin-top: 0;
}

.page-promotions-new-user-bonus .app-content p {
    text-align: left;
    font-size: 1.1em;
    margin-bottom: 30px;
}

.page-promotions-new-user-bonus .app-download-note {
    font-size: 0.9em;
    color: #aaaaaa;
    margin-top: 20px;
    text-align: left;
}

.page-promotions-new-user-bonus .app-download-note a {
    color: #FFD700;
    text-decoration: none;
}

.page-promotions-new-user-bonus .app-download-note a:hover {
    text-decoration: underline;
}

.page-promotions-new-user-bonus .app-image-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-promotions-new-user-bonus .app-mockup-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
}

/* Terms & Conditions Section */
.page-promotions-new-user-bonus .terms-conditions-section {
    background-color: #0A192F;
    padding: 80px 0;
}

.page-promotions-new-user-bonus .terms-conditions-section p {
    text-align: left;
    max-width: 900px;
    margin: 0 auto 30px;
}

.page-promotions-new-user-bonus .terms-conditions-section ul {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
}

.page-promotions-new-user-bonus .terms-conditions-section ul li {
    background-color: #1A2E4C;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    font-size: 1.1em;
    color: #f5e6d0;
    border-left: 5px solid #FFD700;
}

.page-promotions-new-user-bonus .terms-conditions-section ul li strong {
    color: #FFD700;
}

.page-promotions-new-user-bonus .terms-conditions-section ul li a {
    color: #FFD700;
    text-decoration: none;
}

.page-promotions-new-user-bonus .terms-conditions-section ul li a:hover {
    text-decoration: underline;
}

/* FAQ Section */
.page-promotions-new-user-bonus .faq-section {
    background-color: #0D203A;
    padding: 80px 0;
}

.page-promotions-new-user-bonus .faq-item {
    background-color: #1A2E4C;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-user-bonus .faq-item h3 {
    color: #FFD700;
    text-align: left;
    font-size: 1.5em;
    margin-bottom: 10px;
    cursor: pointer;
}

.page-promotions-new-user-bonus .faq-item p {
    text-align: left;
    color: #cccccc;
    font-size: 1em;
}

.page-promotions-new-user-bonus .faq-item a {
    color: #FFD700;
    text-decoration: none;
}

.page-promotions-new-user-bonus .faq-item a:hover {
    text-decoration: underline;
}

/* Final CTA Section */
.page-promotions-new-user-bonus .final-cta-section {
    background-color: #0A192F;
    padding: 80px 0;
    text-align: center;
    border-top: 3px solid #FFD700;
}

.page-promotions-new-user-bonus .final-cta-section p {
    font-size: 1.3em;
    max-width: 900px;
    margin: 0 auto 40px;
    color: #f5e6d0;
}

.page-promotions-new-user-bonus .final-cta-section a {
    color: #FFD700;
    text-decoration: none;
}

.page-promotions-new-user-bonus .final-cta-section a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-new-user-bonus .hero-section .container {
        flex-direction: column;
        text-align: center;
    }

    .page-promotions-new-user-bonus .hero-content,
    .page-promotions-new-user-bonus .hero-image-wrapper {
        min-width: unset;
        width: 100%;
    }

    .page-promotions-new-user-bonus .hero-content h1,
    .page-promotions-new-user-bonus .hero-content p {
        text-align: center;
    }

    .page-promotions-new-user-bonus .hero-actions {
        justify-content: center;
    }

    .page-promotions-new-user-bonus .app-download-section .container {
        flex-direction: column-reverse;
    }

    .page-promotions-new-user-bonus .app-content h2,
    .page-promotions-new-user-bonus .app-content p,
    .page-promotions-new-user-bonus .app-download-note {
        text-align: center;
    }

    .page-promotions-new-user-bonus .app-content .btn {
        margin: 0 auto;
    }

    .page-promotions-new-user-bonus .hero-image,
    .page-promotions-new-user-bonus .app-mockup-image {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .page-promotions-new-user-bonus h1 {
        font-size: 2.5em;
    }

    .page-promotions-new-user-bonus h2 {
        font-size: 2em;
    }

    .page-promotions-new-user-bonus h3 {
        font-size: 1.4em;
    }

    .page-promotions-new-user-bonus p {
        font-size: 1em;
    }

    .page-promotions-new-user-bonus .btn {
        padding: 10px 20px;
        font-size: 1em;
    }

    .page-promotions-new-user-bonus .btn-secondary {
        margin-left: 0;
        margin-top: 10px;
    }

    .page-promotions-new-user-bonus .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .page-promotions-new-user-bonus .bonus-offers-grid,
    .page-promotions-new-user-bonus .features-grid {
        grid-template-columns: 1fr;
    }

    .page-promotions-new-user-bonus .how-to-claim ol li {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .page-promotions-new-user-bonus .how-to-claim ol li strong {
        margin-bottom: 5px;
    }
}

@media (max-width: 480px) {
    .page-promotions-new-user-bonus h1 {
        font-size: 2em;
    }

    .page-promotions-new-user-bonus h2 {
        font-size: 1.8em;
    }

    .page-promotions-new-user-bonus .hero-section,
    .page-promotions-new-user-bonus .why-choose-us-section,
    .page-promotions-new-user-bonus .bonus-details-section,
    .page-promotions-new-user-bonus .app-download-section,
    .page-promotions-new-user-bonus .terms-conditions-section,
    .page-promotions-new-user-bonus .faq-section,
    .page-promotions-new-user-bonus .final-cta-section {
        padding: 50px 0;
    }

    .page-promotions-new-user-bonus .hero-image,
    .page-promotions-new-user-bonus .app-mockup-image {
        max-width: 95%;
    }
}