.page-promo-welcome-bonus {
    color: #FFFFFF; /* Light text for dark body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    background-color: var(--secondary-color); /* Assuming shared.css defines a dark secondary-color */
}

.page-promo-welcome-bonus__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-promo-welcome-bonus__section-title {
    font-size: 2.5em;
    color: #FCBC45; /* Login color for titles */
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-promo-welcome-bonus__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #f0f0f0;
}

.page-promo-welcome-bonus__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 1.1em;
    text-align: center;
    border: none;
    cursor: pointer;
}

.page-promo-welcome-bonus__button--primary {
    background-color: #FCBC45; /* Login color */
    color: #000000; /* Dark text for bright button */
}

.page-promo-welcome-bonus__button--primary:hover {
    background-color: #e6a73a;
    transform: translateY(-2px);
}

.page-promo-welcome-bonus__button--secondary {
    background-color: transparent;
    color: #FFFFFF; /* Register color */
    border: 2px solid #FFFFFF;
    margin-left: 20px;
}

.page-promo-welcome-bonus__button--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.page-promo-welcome-bonus__button--small {
    padding: 10px 20px;
    font-size: 0.9em;
    margin-top: 15px;
}

/* Hero Section */
.page-promo-welcome-bonus__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    background-color: #000000;
}

.page-promo-welcome-bonus__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.6;
}

.page-promo-welcome-bonus__hero-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-promo-welcome-bonus__hero-text-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #FFFFFF;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    max-width: 900px;
}

.page-promo-welcome-bonus__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FCBC45; /* Login color for hero title */
    line-height: 1.2;
}

.page-promo-welcome-bonus__hero-description {
    font-size: 1.4em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Details Section */
.page-promo-welcome-bonus__details-section {
    background-color: #0d0d0d;
    padding: 80px 0;
}

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

.page-promo-welcome-bonus__detail-card {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-promo-welcome-bonus__detail-card:hover {
    transform: translateY(-10px);
}

.page-promo-welcome-bonus__detail-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    min-width: 200px; /* Minimum image size */
    min-height: 200px;
}

.page-promo-welcome-bonus__card-title {
    font-size: 1.5em;
    color: #FCBC45;
    margin-bottom: 10px;
}

.page-promo-welcome-bonus__detail-card p {
    color: #f0f0f0;
}

/* How to Claim Section */
.page-promo-welcome-bonus__how-to-claim {
    background-color: #000000;
    padding: 80px 0;
}

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

.page-promo-welcome-bonus__step-item {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

.page-promo-welcome-bonus__step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FCBC45;
    color: #000000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    border: 3px solid #000000;
}

.page-promo-welcome-bonus__step-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    margin-bottom: 20px;
    object-fit: cover;
    min-width: 200px; /* Minimum image size */
    min-height: 200px;
}

.page-promo-welcome-bonus__step-title {
    font-size: 1.6em;
    color: #FCBC45;
    margin-bottom: 10px;
}

.page-promo-welcome-bonus__step-item p {
    color: #f0f0f0;
}

.page-promo-welcome-bonus__center-cta {
    text-align: center;
    margin-top: 60px;
}

/* Terms and Conditions Section */
.page-promo-welcome-bonus__terms-conditions {
    background-color: #0d0d0d;
    padding: 80px 0;
}

.page-promo-welcome-bonus__terms-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    object-fit: cover;
    min-width: 200px; /* Minimum image size */
    min-height: 200px;
}

.page-promo-welcome-bonus__terms-list {
    list-style: disc inside;
    text-align: left;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #f0f0f0;
    font-size: 1.1em;
}

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

.page-promo-welcome-bonus__read-more {
    text-align: center;
    font-size: 1.1em;
    color: #f0f0f0;
}

.page-promo-welcome-bonus__link {
    color: #FCBC45;
    text-decoration: none;
    font-weight: bold;
}

.page-promo-welcome-bonus__link:hover {
    text-decoration: underline;
}

/* Eligible Games Section */
.page-promo-welcome-bonus__eligible-games {
    background-color: #000000;
    padding: 80px 0;
}

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

.page-promo-welcome-bonus__game-card {
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: #FFFFFF;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-promo-welcome-bonus__game-card:hover {
    transform: translateY(-10px);
}

.page-promo-welcome-bonus__game-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    min-width: 200px; /* Minimum image size */
    min-height: 200px;
}

.page-promo-welcome-bonus__game-title {
    font-size: 1.4em;
    color: #FCBC45;
    padding: 20px 15px;
}

/* Why Choose Section */
.page-promo-welcome-bonus__why-choose {
    background-color: #0d0d0d;
    padding: 80px 0;
}

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

.page-promo-welcome-bonus__feature-item {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promo-welcome-bonus__feature-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    min-width: 200px; /* Minimum image size */
    min-height: 200px;
}

.page-promo-welcome-bonus__feature-title {
    font-size: 1.5em;
    color: #FCBC45;
    margin-bottom: 10px;
}

.page-promo-welcome-bonus__feature-item p {
    color: #f0f0f0;
}

/* FAQ Section */
.page-promo-welcome-bonus__faq-section {
    background-color: #000000;
    padding: 80px 0;
}

.page-promo-welcome-bonus__faq-item {
    background-color: #1a1a1a;
    margin-bottom: 20px;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-promo-welcome-bonus__faq-question {
    font-size: 1.3em;
    color: #FCBC45;
    margin-bottom: 15px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-promo-welcome-bonus__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-promo-welcome-bonus__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-promo-welcome-bonus__faq-answer {
    font-size: 1.05em;
    color: #f0f0f0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.page-promo-welcome-bonus__faq-answer.open {
    max-height: 200px; /* Adjust as needed */
}

/* Final CTA Section */
.page-promo-welcome-bonus__final-cta {
    background-color: #0d0d0d;
    padding: 80px 0;
    text-align: center;
}

.page-promo-welcome-bonus__final-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-promo-welcome-bonus__hero-title {
        font-size: 2.5em;
    }

    .page-promo-welcome-bonus__hero-description {
        font-size: 1.1em;
    }

    .page-promo-welcome-bonus__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-promo-welcome-bonus__button {
        width: 80%;
        margin: 0 auto;
    }

    .page-promo-welcome-bonus__button--secondary {
        margin-left: 0;
    }

    .page-promo-welcome-bonus__section-title {
        font-size: 2em;
    }

    .page-promo-welcome-bonus__section-description {
        font-size: 1em;
    }

    .page-promo-welcome-bonus__details-grid,
    .page-promo-welcome-bonus__steps-grid,
    .page-promo-welcome-bonus__game-cards-grid,
    .page-promo-welcome-bonus__features-grid {
        grid-template-columns: 1fr;
    }

    .page-promo-welcome-bonus__detail-card,
    .page-promo-welcome-bonus__step-item,
    .page-promo-welcome-bonus__game-card,
    .page-promo-welcome-bonus__feature-item {
        padding: 20px;
    }

    .page-promo-welcome-bonus__detail-image,
    .page-promo-welcome-bonus__step-image,
    .page-promo-welcome-bonus__game-image,
    .page-promo-welcome-bonus__feature-image,
    .page-promo-welcome-bonus__terms-image {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Ensure mobile images are not too small */
        min-height: 200px;
    }

    /* Ensure all content area images are responsive and don't cause overflow */
    .page-promo-welcome-bonus img {
        max-width: 100% !important;
        height: auto !important;
    }

    .page-promo-welcome-bonus__faq-question {
        font-size: 1.1em;
    }

    .page-promo-welcome-bonus__faq-answer {
        font-size: 0.95em;
    }
    
    .page-promo-welcome-bonus__terms-list {
        padding-left: 20px;
    }
}