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

/* Base Styles for the page content, considering the dark body background from shared.css */
.page-promotions-new-user-bonus {
    color: #ffffff; /* Light text for dark body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: transparent; /* Main content area should inherit body background or define its own */
}

/* Fixed header spacing */
.page-promotions-new-user-bonus__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensure hero section is not covered by fixed header */
}

/* General Section Styling */
.page-promotions-new-user-bonus__section {
    padding: 60px 0;
    position: relative;
}

.page-promotions-new-user-bonus__section:nth-of-type(even) {
    background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter dark background for contrast between sections */
}

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

.page-promotions-new-user-bonus__section-title {
    font-size: 2.5em;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-promotions-new-user-bonus__section-text {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #f0f0f0; /* Slightly off-white for readability */
}

/* Hero Section */
.page-promotions-new-user-bonus__hero-section {
    position: relative;
    width: 100%;
    height: 70vh; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    min-height: 500px; /* Minimum height for hero */
}

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