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

/* Root variables for consistent theming */
:root {
    --primary-color: #26A9E0;
    --secondary-color: #007bff; /* A slightly different blue for secondary actions/hovers */
    --accent-color: #EA7C07; /* Login button color, used sparingly */
    --text-dark: #333333;
    --text-light: #ffffff;
    --background-light: #ffffff;
    --background-dark: #26A9E0; /* Using primary color for dark background sections */
    --border-color: #e0e0e0;
}

.page-promotions-new-user-bonus {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark); /* Default text color for light background */
    background-color: var(--background-light); /* Assuming shared.css sets body background to light */
}

/* Ensure main content area starts below the fixed header */
.page-promotions-new-user-bonus__hero-section {
    padding-top: var(--header-offset, 120px); /* Adjust for fixed header */
    padding-bottom: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #a2e0ff 100%); /* Lighter gradient for hero */
    color: var(--text-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-promotions-new-user-bonus__hero-image-main {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-user-bonus__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-promotions-new-user-bonus__hero-title {
    font-size: 3.2em;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-light); /* Ensure high contrast */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user-bonus__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light); /* Ensure high contrast */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-user-bonus__cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: var(--accent-color); /* Using login color for primary CTA */
    color: var(--text-light);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    border: none;
}

.page-promotions-new-user-bonus__cta-button:hover {
    background: #c76500; /* Darken on hover */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

/* General Section Styling */
.page-promotions-new-user-bonus__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-promotions-new-user-bonus__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: bold;
}

.page-promotions-new-user-bonus__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: var(--text-dark);
}

.page-promotions-new-user-bonus__outro-text {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 40px auto 0 auto;
    color: var(--text-dark);
}

.page-promotions-new-user-bonus__benefits-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

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

.page-promotions-new-user-bonus__benefit-item {
    background: var(--background-light);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.page-promotions-new-user-bonus__benefit-icon {
    width: 100%; /* Ensure image takes full width of item */
    height: 200px; /* Fixed height for consistency */
    object-fit: cover; /* Crop image to fit */
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-promotions-new-user-bonus__benefit-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: bold;
}

.page-promotions-new-user-bonus__benefit-text {
    font-size: 1em;
    color: var(--text-dark);
}

.page-promotions-new-user-bonus__btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions-new-user-bonus__btn-primary:hover {
    background: #1f8ec4;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.page-promotions-new-user-bonus__btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--background-light);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    font-weight: bold;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-promotions-new-user-bonus__btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions-new-user-bonus__cta-center {
    text-align: center;
    margin-top: 50px;
}

/* Dark Background Section Styling */
.page-promotions-new-user-bonus__dark-bg {
    background-color: var(--background-dark);
    color: var(--text-light);
}

.page-promotions-new-user-bonus__dark-bg .page-promotions-new-user-bonus__section-title,
.page-promotions-new-user-bonus__dark-bg .page-promotions-new-user-bonus__section-intro,
.page-promotions-new-user-bonus__dark-bg .page-promotions-new-user-bonus__outro-text {
    color: var(--text-light);
}

.page-promotions-new-user-bonus__promo-details-section {
    padding: 80px 0;
}

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