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

/* General page styling */
.page-promotions-new-user-bonus {
    font-family: 'Arial', sans-serif;
    color: #333; /* Dark text for contrast */
    line-height: 1.6;
    background-color: #F8F8F8; /* Light background for contrast */
}

/* Hero Section */
.page-promotions-new-user-bonus__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    background-color: #1A2C50; /* Primary brand color */
    color: #FFFFFF; /* White text for contrast */
    overflow: hidden;
    padding: 60px 20px;
    text-align: center;
}

.page-promotions-new-user-bonus__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtle background image */
    z-index: 1;
}

.page-promotions-new-user-bonus__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.page-promotions-new-user-bonus__hero-title {
    font-size: 3.5em;
    font-weight: bold;
    color: #FFD700; /* Secondary brand color for highlights */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-new-user-bonus__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #E0E0E0; /* Lighter white for readability */
}

/* General content sections */
.page-promotions-new-user-bonus__content-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px 20px;
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-promotions-new-user-bonus__section-title {
    font-size: 2.5em;
    color: #1A2C50; /* Primary brand color */
    margin-bottom: 25px;
    text-align: center;
    font-weight: bold;
}

.page-promotions-new-user-bonus__subsection-title {
    font-size: 1.8em;
    color: #FFD700; /* Secondary brand color */
    margin-top: 30px;
    margin-bottom: 15px;
    text-align: center;
}

.page-promotions-new-user-bonus__section-text {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 15px;
    text-align: justify;
}

.page-promotions-new-user-bonus__image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-new-user-bonus__list,
.page-promotions-new-user-bonus__ordered-list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #333;
}

.page-promotions-new-user-bonus__ordered-list {
    list-style-type: decimal;
}

.page-promotions-new-user-bonus__list li,
.page-promotions-new-user-bonus__ordered-list li {
    margin-bottom: 10px;
    font-size: 1.05em;
    line-height: 1.8;
}

.page-promotions-new-user-bonus__list li strong,
.page-promotions-new-user-bonus__ordered-list li strong {
    color: #1A2C50;
}

/* Buttons */
.page-promotions-new-user-bonus__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    margin: 10px;
}

.page-promotions-new-user-bonus__button--primary {
    background-color: #FFD700; /* Gold */
    color: #1A2C50; /* Dark blue text for contrast */
    border: 2px solid #FFD700;
}

.page-promotions-new-user-bonus__button--primary:hover {
    background-color: #e6c200; /* Darker gold */
    border-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-user-bonus__button--secondary {
    background-color: transparent;
    color: #1A2C50; /* Dark blue text */
    border: 2px solid #1A2C50;
}

.page-promotions-new-user-bonus__button--secondary:hover {
    background-color: #1A2C50; /* Dark blue background */
    color: #FFD700; /* Gold text */
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-user-bonus__hero-section .page-promotions-new-user-bonus__button--primary {
    background-color: #FFD700;
    color: #1A2C50;
    border-color: #FFD700;
}

.page-promotions-new-user-bonus__hero-section .page-promotions-new-user-bonus__button--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

/* Call to action final section */
.page-promotions-new-user-bonus__cta-final {
    text-align: center;
    background-color: #1A2C50; /* Dark blue background */
    color: #FFFFFF; /* White text */
    padding: 60px 20px;
    margin-bottom: 0; /* Remove bottom margin for footer integration */
    border-radius: 0; /* No border radius for full width */
}

.page-promotions-new-user-bonus__cta-final .page-promotions-new-user-bonus__section-title {
    color: #FFD700; /* Gold title */
}

.page-promotions-new-user-bonus__cta-final .page-promotions-new-user-bonus__section-text {
    color: #E0E0E0; /* Lighter white text */
}

.page-promotions-new-user-bonus__cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.page-promotions-new-user-bonus__cta-image {
    max-width: 500px; /* Adjust size for CTA image */
    margin-top: 20px;
}


/* 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__subsection-title {
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .page-promotions-new-user-bonus__hero-section {
        min-height: 450px;
        padding: 40px 15px;
    }
    .page-promotions-new-user-bonus__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-new-user-bonus__hero-description {
        font-size: 1em;
    }
    .page-promotions-new-user-bonus__content-section {
        margin: 20px auto;
        padding: 25px 15px;
    }
    .page-promotions-new-user-bonus__section-title {
        font-size: 1.8em;
    }
    .page-promotions-new-user-bonus__subsection-title {
        font-size: 1.3em;
    }
    .page-promotions-new-user-bonus__section-text,
    .page-promotions-new-user-bonus__list li,
    .page-promotions-new-user-bonus__ordered-list li {
        font-size: 0.95em;
    }
    .page-promotions-new-user-bonus__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-new-user-bonus__cta-wrapper {
        flex-direction: column;
    }
    .page-promotions-new-user-bonus__cta-image {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .page-promotions-new-user-bonus__hero-section {
        min-height: 350px;
    }
    .page-promotions-new-user-bonus__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-new-user-bonus__hero-description {
        font-size: 0.9em;
    }
    .page-promotions-new-user-bonus__section-title {
        font-size: 1.5em;
    }
    .page-promotions-new-user-bonus__subsection-title {
        font-size: 1.1em;
    }
    .page-promotions-new-user-bonus__button {
        width: 100%;
        margin: 5px 0;
    }
}