/* style/promotions-new-user-bonus.css */
:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --button-login-color: #EA7C07;
    --background-color: #FFFFFF;
    --black-color: #000000;
}

/* Base styles for the page content */
.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-color); /* Default background */
}

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

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

.page-promotions-new-user-bonus__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-promotions-new-user-bonus__cta-button,
.page-promotions-new-user-bonus__btn-primary,
.page-promotions-new-user-bonus__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
}

.page-promotions-new-user-bonus__cta-button,
.page-promotions-new-user-bonus__btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.page-promotions-new-user-bonus__cta-button:hover,
.page-promotions-new-user-bonus__btn-primary:hover {
    background-color: #1e87b7; /* Slightly darker primary */
    border-color: #1e87b7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.page-promotions-new-user-bonus__btn-secondary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.page-promotions-new-user-bonus__button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

/* Promotion Hero Section */
.page-promotions-new-user-bonus__promotion-hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Fixed header spacing */
    background-color: var(--primary-color); /* Fallback/background for image */
    overflow: hidden;
}

.page-promotions-new-user-bonus__promotion-hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.page-promotions-new-user-bonus__promotion-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    color: var(--text-light); /* Light text on primary background */
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.3); /* Semi-transparent overlay for text readability */
    box-sizing: border-box;
}

.page-promotions-new-user-bonus__promotion-hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-light);
    font-weight: 900;
}

.page-promotions-new-user-bonus__promotion-hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.6;
    color: var(--text-light);
}

/* Introduction Section */
.page-promotions-new-user-bonus__introduction-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

/* How to Claim Section */
.page-promotions-new-user-bonus__how-to-claim-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

.page-promotions-new-user-bonus__step-item {
    background-color: var(--secondary-color);
    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;
    border-left: 5px solid var(--primary-color);
}

.page-promotions-new-user-bonus__step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

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

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

/* Bonus Types Section */
.page-promotions-new-user-bonus__bonus-types-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

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

.page-promotions-new-user-bonus__card {
    background-color: var(--secondary-color);
    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;
    border: 1px solid #e0e0e0;
    color: var(--text-dark); /* Ensure dark text on light card */
}

.page-promotions-new-user-bonus__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-promotions-new-user-bonus__card-title {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

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

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

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

.page-promotions-new-user-bonus__terms-item {
    background-color: var(--secondary-color);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary-color);
    color: var(--text-dark);
}

.page-promotions-new-user-bonus__terms-heading {
    font-size: 1.3em;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

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

/* Platform Overview Section (Dark Background) */
.page-promotions-new-user-bonus__platform-overview-section {
    padding: 80px 0;
    background-color: var(--primary-color); /* Dark background */
    color: var(--text-light); /* Light text */
}

.page-promotions-new-user-bonus__platform-overview-section .page-promotions-new-user-bonus__section-title {
    color: var(--text-light); /* Ensure title is light on dark background */
}

.page-promotions-new-user-bonus__platform-overview-section .page-promotions-new-user-bonus__text-block {
    color: var(--text-light);
}

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

.page-promotions-new-user-bonus__feature-item {
    background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent white on dark background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}