.page-promo-welcome-bonus {
    color: #333333; /* Dark text for light body background */
    background-color: #FFFFFF; /* Explicitly set for clarity, though body is already white */
    padding-top: var(--header-offset, 120px); /* Fixed header offset for main content */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

.page-promo-welcome-bonus__hero-section {
    position: relative;
    text-align: center;
    color: #FFFFFF; /* White text for hero overlay */
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    overflow: hidden; /* Ensure image doesn't overflow */
}

.page-promo-welcome-bonus__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.page-promo-welcome-bonus__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the entire hero section */
    display: block;
}

.page-promo-welcome-bonus__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent dark background for text */
    border-radius: 10px;
}

.page-promo-welcome-bonus__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FCBC45; /* Login button color for emphasis */
}

.page-promo-welcome-bonus__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #FFFFFF;
}

.page-promo-welcome-bonus__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-promo-welcome-bonus__button {
    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;
    min-width: 200px; /* Ensure buttons are large enough */
    text-align: center;
    font-size: 1.1em;
}

.page-promo-welcome-bonus__button--register,
.page-promo-welcome-bonus__button--final-register {
    background-color: #FCBC45; /* Login button color */
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-promo-welcome-bonus__button--register:hover,
.page-promo-welcome-bonus__button--final-register:hover {
    background-color: #e0a53a;
    border-color: #e0a53a;
}

.page-promo-welcome-bonus__button--learn-more,
.page-promo-welcome-bonus__button--learn-more-about,
.page-promo-welcome-bonus__button--responsible-gaming,
.page-promo-welcome-bonus__button--contact-us,
.page-promo-welcome-bonus__button--read-full-terms {
    background-color: transparent;
    color: #FCBC45;
    border: 2px solid #FCBC45;
}

.page-promo-welcome-bonus__button--learn-more:hover,
.page-promo-welcome-bonus__button--learn-more-about:hover,
.page-promo-welcome-bonus__button--responsible-gaming:hover,
.page-promo-welcome-bonus__button--contact-us:hover,
.page-promo-welcome-bonus__button--read-full-terms:hover {
    background-color: #FCBC45;
    color: #000000;
}

.page-promo-welcome-bonus__button--cta,
.page-promo-welcome-bonus__button--register-step,
.page-promo-welcome-bonus__button--deposit-step,
.page-promo-welcome-bonus__button--activate-step {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-promo-welcome-bonus__button--cta:hover,
.page-promo-welcome-bonus__button--register-step:hover,
.page-promo-welcome-bonus__button--deposit-step:hover,
.page-promo-welcome-bonus__button--activate-step:hover {
    background-color: #e0a53a;
    border-color: #e0a53a;
}


.page-promo-welcome-bonus__overview-section,
.page-promo-welcome-bonus__claim-section,
.page-promo-welcome-bonus__terms-section,
.page-promo-welcome-bonus__why-choose-section,
.page-promo-welcome-bonus__responsible-gaming-section,
.page-promo-welcome-bonus__faq-section,
.page-promo-welcome-bonus__cta-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px 20px;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-promo-welcome-bonus__overview-title,
.page-promo-welcome-bonus__claim-title,
.page-promo-welcome-bonus__terms-title,
.page-promo-welcome-bonus__why-choose-title,
.page-promo-welcome-bonus__responsible-gaming-title,
.page-promo-welcome-bonus__faq-title,
.page-promo-welcome-bonus__cta-title {
    font-size: 2.5em;
    color: #000000;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-promo-welcome-bonus__overview-text,
.page-promo-welcome-bonus__claim-intro,
.page-promo-welcome-bonus__terms-intro,
.page-promo-welcome-bonus__terms-text,
.page-promo-welcome-bonus__terms-final-note,
.page-promo-welcome-bonus__why-choose-intro,
.page-promo-welcome-bonus__responsible-gaming-text,
.page-promo-welcome-bonus__faq-answer,
.page-promo-welcome-bonus__cta-description {
    font-size: 1.1em;
    color: #444444;
    margin-bottom: 20px;
    text-align: justify;
}

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

.page-promo-welcome-bonus__feature-card {
    background-color: #f8f8f8;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    text-align: center;
    border-left: 5px solid #FCBC45;
}

.page-promo-welcome-bonus__feature-title {
    font-size: 1.4em;
    color: #000000;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promo-welcome-bonus__feature-description {
    font-size: 1em;
    color: #555555;
}

.page-promo-welcome-bonus__steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-promo-welcome-bonus__step-card {
    background-color: #f8f8f8;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-promo-welcome-bonus__step-image {
    width: 100%; /* Make image responsive within card */
    max-width: 400px; /* Max width for step images */
    height: auto;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
    min-width: 200px; /* Enforce min image size */
    min-height: 200px; /* Enforce min image size */
}

.page-promo-welcome-bonus__step-title {
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promo-welcome-bonus__step-description {
    font-size: 1em;
    color: #555555;
    margin-bottom: 20px;
    flex-grow: 1; /* Push button to bottom */
}

.page-promo-welcome-bonus__terms-subtitle {
    font-size: 1.8em;
    color: #000000;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promo-welcome-bonus__terms-list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #444444;
}

.page-promo-welcome-bonus__terms-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

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

.page-promo-welcome-bonus__advantage-card {
    background-color: #f8f8f8;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 5px solid #FCBC45;
}

.page-promo-welcome-bonus__advantage-icon {
    width: 100%; /* Responsive within card */
    max-width: 300px; /* Max width for advantage images */
    height: auto;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
    min-width: 200px; /* Enforce min image size */
    min-height: 200px; /* Enforce min image size */
}

.page-promo-welcome-bonus__advantage-title {
    font-size: 1.4em;
    color: #000000;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promo-welcome-bonus__advantage-description {
    font-size: 1em;
    color: #555555;
}

.page-promo-welcome-bonus__faq-item {
    background-color: #f8f8f8;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 4px solid #FCBC45;
}

.page-promo-welcome-bonus__faq-question {
    font-size: 1.3em;
    color: #000000;
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: bold;
}

.page-promo-welcome-bonus__faq-answer {
    font-size: 1em;
    color: #555555;
    display: none; /* Hidden by default, toggled by JS */
    margin-top: 10px;
    text-align: left;
}

.page-promo-welcome-bonus__faq-item.active .page-promo-welcome-bonus__faq-answer {
    display: block;
}

.page-promo-welcome-bonus__cta-section {
    background-color: #000000; /* Main color for CTA background */
    color: #FFFFFF;
    text-align: center;
    padding: 60px 20px;
    margin-top: 60px;
    border-radius: 10px;
}

.page-promo-welcome-bonus__cta-title {
    color: #FCBC45; /* Highlight title with accent color */
    font-size: 3em;
    margin-bottom: 20px;
}

.page-promo-welcome-bonus__cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #f0f0f0;
}

.page-promo-welcome-bonus__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-promo-welcome-bonus__hero-title {
        font-size: 2.8em;
    }
    .page-promo-welcome-bonus__hero-description {
        font-size: 1.2em;
    }
    .page-promo-welcome-bonus__overview-title,
    .page-promo-welcome-bonus__claim-title,
    .page-promo-welcome-bonus__terms-title,
    .page-promo-welcome-bonus__why-choose-title,
    .page-promo-welcome-bonus__responsible-gaming-title,
    .page-promo-welcome-bonus__faq-title,
    .page-promo-welcome-bonus__cta-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-promo-welcome-bonus {
        padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
    }
    .page-promo-welcome-bonus__hero-section {
        padding: 60px 15px;
        min-height: 400px;
    }
    .page-promo-welcome-bonus__hero-title {
        font-size: 2.2em;
    }
    .page-promo-welcome-bonus__hero-description {
        font-size: 1.1em;
    }
    .page-promo-welcome-bonus__hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-promo-welcome-bonus__button {
        width: 100%;
        max-width: 300px;
    }

    .page-promo-welcome-bonus__overview-section,
    .page-promo-welcome-bonus__claim-section,
    .page-promo-welcome-bonus__terms-section,
    .page-promo-welcome-bonus__why-choose-section,
    .page-promo-welcome-bonus__responsible-gaming-section,
    .page-promo-welcome-bonus__faq-section,
    .page-promo-welcome-bonus__cta-section {
        margin: 20px auto;
        padding: 30px 15px;
    }

    .page-promo-welcome-bonus__overview-title,
    .page-promo-welcome-bonus__claim-title,
    .page-promo-welcome-bonus__terms-title,
    .page-promo-welcome-bonus__why-choose-title,
    .page-promo-welcome-bonus__responsible-gaming-title,
    .page-promo-welcome-bonus__faq-title,
    .page-promo-welcome-bonus__cta-title {
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    .page-promo-welcome-bonus__features,
    .page-promo-welcome-bonus__steps-container,
    .page-promo-welcome-bonus__advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .page-promo-welcome-bonus__advantage-icon,
    .page-promo-welcome-bonus__step-image {
      max-width: 100%; /* Ensure images don't overflow */
      height: auto;
      min-width: 200px; /* Enforce min image size */
      min-height: 200px; /* Enforce min image size */
    }

    .page-promo-welcome-bonus__cta-title {
        font-size: 2.2em;
    }
    .page-promo-welcome-bonus__cta-description {
        font-size: 1.1em;
    }
    .page-promo-welcome-bonus__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Enforce min image sizes for all img elements within .page-promo-welcome-bonus */
    .page-promo-welcome-bonus img {
        max-width: 100%; /* Override any specific width/max-width if it's smaller than 200px */
        height: auto;
        min-width: 200px; /* Ensure images are not smaller than 200px */
        min-height: 200px; /* Ensure images are not smaller than 200px */
    }
}