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

/* Base styles for the page content */
.page-promotions-first-deposit-bonus-details {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light background */
    background-color: var(--background-color, #FFFFFF); /* Inherit from shared, default white */
}

/* Ensure body padding-top is handled by shared.css or hero section */
.page-promotions-first-deposit-bonus-details__hero-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-promotions-first-deposit-bonus-details__dark-bg {
    background-color: #26A9E0; /* Main brand color */
    color: #FFFFFF; /* White text for dark background */
}

.page-promotions-first-deposit-bonus-details__light-bg {
    background-color: #FFFFFF; /* Auxiliary color */
    color: #333333; /* Dark text for light background */
}

.page-promotions-first-deposit-bonus-details__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-promotions-first-deposit-bonus-details__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7); /* Slightly darken image for text readability */
}

.page-promotions-first-deposit-bonus-details__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
    margin: 0 auto;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5); /* Enhance text readability */
}

.page-promotions-first-deposit-bonus-details__main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFFFFF;
    line-height: 1.2;
}

.page-promotions-first-deposit-bonus-details__intro-text {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #FFFFFF;
}

.page-promotions-first-deposit-bonus-details__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-promotions-first-deposit-bonus-details__cta-buttons--center {
    margin-top: 40px;
    text-align: center;
}

.page-promotions-first-deposit-bonus-details__btn-primary,
.page-promotions-first-deposit-bonus-details__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
}

.page-promotions-first-deposit-bonus-details__btn-primary {
    background-color: #EA7C07; /* Login color for primary action */
    color: #FFFFFF;
    border: 2px solid transparent;
}

.page-promotions-first-deposit-bonus-details__btn-primary:hover {
    background-color: #d66f06;
}

.page-promotions-first-deposit-bonus-details__btn-secondary {
    background-color: #FFFFFF;
    color: #26A9E0; /* Main brand color */
    border: 2px solid #26A9E0;
}

.page-promotions-first-deposit-bonus-details__btn-secondary:hover {
    background-color: #e0f2f7;
}

.page-promotions-first-deposit-bonus-details__content-area,
.page-promotions-first-deposit-bonus-details__how-to-claim,
.page-promotions-first-deposit-bonus-details__games-section,
.page-promotions-first-deposit-bonus-details__why-shbetcon,
.page-promotions-first-deposit-bonus-details__faq-section,
.page-promotions-first-deposit-bonus-details__cta-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.page-promotions-first-deposit-bonus-details__section-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-promotions-first-deposit-bonus-details__section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #26A9E0; /* Main brand color */
}

.page-promotions-first-deposit-bonus-details__section-description {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto;
    color: #555555;
}