/* style/promotions-first-deposit-bonus.css */

/* General Styles for the Page */
.page-promotions-first-deposit-bonus {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: #000000; /* Assuming body background is black from shared.css */
}

.page-promotions-first-deposit-bonus__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

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

.page-promotions-first-deposit-bonus__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #f0f0f0;
}

/* Hero Section */
.page-promotions-first-deposit-bonus__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    background-color: #017439; /* Brand color as background */
    color: #ffffff;
    overflow: hidden;
    flex-wrap: wrap; /* Allow content to wrap on smaller screens */
}

.page-promotions-first-deposit-bonus__hero-content {
    max-width: 600px;
    text-align: center;
    z-index: 1;
    padding: 20px;
    box-sizing: border-box;
}

.page-promotions-first-deposit-bonus__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFFF00; /* Register/Login font color for highlight */
    font-weight: bold;
    line-height: 1.2;
}

.page-promotions-first-deposit-bonus__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

.page-promotions-first-deposit-bonus__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow buttons to wrap */
}

.page-promotions-first-deposit-bonus__btn-primary,
.page-promotions-first-deposit-bonus__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    max-width: 100%; /* Ensure buttons don't overflow */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Allow text to break */
}