.page-promo {
    color: #333333; /* Dark text for light body background */
    padding-top: var(--header-offset, 120px);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

.page-promo__section-title {
    font-size: 2.5em;
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-promo__section-subtitle {
    font-size: 1.2em;
    color: #555555;
    text-align: center;
    margin-bottom: 40px;
}

.page-promo__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
    cursor: pointer;
    min-width: 150px; /* Ensure buttons are not too small */
}

.page-promo__button--primary {
    background-color: #FCBC45; /* Login button color for primary action */
    color: #000000; /* Dark text for light button */
    border: 2px solid #FCBC45;
}

.page-promo__button--primary:hover {
    background-color: #e0a53b;
    transform: translateY(-2px);
}

.page-promo__button--secondary {
    background-color: transparent;
    color: #000000; /* Dark text for light background */
    border: 2px solid #000000;
}

.page-promo__button--secondary:hover {
    background-color: #000000;
    color: #FFFFFF; /* Light text for dark button */
    transform: translateY(-2px);
}

.page-promo__hero-section {
    background-color: #FFFFFF;
    padding: 80px 20px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promo__hero-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.page-promo__hero-title {
    font-size: 3.5em;
    color: #000000;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-promo__hero-description {
    font-size: 1.3em;
    color: #555555;
    margin-bottom: 30px;
}

.page-promo__hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.page-promo__hero-image {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    min-height: 200px;
}

.page-promo__promotions-grid {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.page-promo__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-promo__card {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-promo__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
}

.page-promo__card-title {
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 15px;
}

.page-promo__card-description {
    color: #666666;
    font-size: 1em;
    margin-bottom: 25px;
}

.page-promo__card-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #000000;
    color: #FFFFFF;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    min-width: 120px; /* Ensure button is not too small */
}

.page-promo__card-button:hover {
    background-color: #333333;
}

.page-promo__how-to-claim {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.page-promo__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-promo__step {
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.page-promo__step-icon {
    width: 60px;
    height: 60px;
    background-color: #FCBC45;
    color: #000000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    font-weight: bold;
    margin: 0 auto 20px;
}

.page-promo__step-title {
    font-size: 1.4em;
    color: #000000;
    margin-bottom: 15px;
}

.page-promo__step-description {
    color: #666666;
    font-size: 0.95em;
    margin-bottom: 20px;
}

.page-promo__button--small {
    padding: 8px 18px;
    font-size: 0.9em;
    min-width: 100px;
}

.page-promo__responsible-gaming {
    padding: 60px 0;
    background-color: #f0f0f0;
    text-align: center;
}

.page-promo__responsible-gaming-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin-top: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    min-height: 200px;
}

.page-promo__faq {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.page-promo__faq-item {
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.page-promo__faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.page-promo__faq-question {
    font-size: 1.3em;
    color: #000000;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-promo__faq-question::after {
    content: '+';
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-promo__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-promo__faq-answer {
    color: #666666;
    font-size: 1em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding-left: 15px;
}

.page-promo__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding-top: 10px;
    padding-bottom: 10px;
}

.page-promo__final-cta {
    padding: 80px 0;
    background-color: #000000;
    color: #FFFFFF;
    text-align: center;
}

.page-promo__final-cta .page-promo__section-title {
    color: #FFFFFF;
}

.page-promo__final-cta .page-promo__section-subtitle {
    color: #f0f0f0;
}

.page-promo__final-cta .page-promo__button--primary {
    background-color: #FCBC45;
    color: #000000;
    border-color: #FCBC45;
}

.page-promo__final-cta .page-promo__button--primary:hover {
    background-color: #e0a53b;
    border-color: #e0a53b;
}

.page-promo__mobile-floating-buttons {
    display: none;
}

@media (max-width: 768px) {
    .page-promo__hero-title {
        font-size: 2.5em;
    }

    .page-promo__hero-description {
        font-size: 1em;
    }

    .page-promo__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-promo__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .page-promo__section-title {
        font-size: 2em;
    }

    .page-promo__section-subtitle {
        font-size: 1em;
    }

    .page-promo__grid {
        grid-template-columns: 1fr;
    }

    .page-promo__steps {
        grid-template-columns: 1fr;
    }

    .page-promo__card-image, .page-promo__hero-image, .page-promo__responsible-gaming-image {
        max-width: 100%;
        height: auto;
    }

    /* Ensure all images in content area are responsive and not too small */
    .page-promo img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce minimum size for content images */
        min-height: 200px;
    }

    .page-promo__card-image {
        height: auto; /* Allow auto height for mobile responsiveness */
    }

    .page-promo__mobile-floating-buttons {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: #000000;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        padding: 10px 0;
        justify-content: space-around;
        align-items: center;
    }

    .page-promo__floating-button {
        flex: 1;
        text-align: center;
        padding: 12px 0;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        border-radius: 0;
        transition: background-color 0.3s ease;
    }

    .page-promo__floating-button--register {
        background-color: #FFFFFF;
        color: #000000;
    }

    .page-promo__floating-button--register:hover {
        background-color: #f0f0f0;
    }

    .page-promo__floating-button--login {
        background-color: #FCBC45;
        color: #000000;
    }

    .page-promo__floating-button--login:hover {
        background-color: #e0a53b;
    }
}