.page-promotions-bonuses {
    background-color: #0A0A0A;
    color: #FFF6D6;
    font-family: Arial, sans-serif;
}

.page-promotions-bonuses__hero-section {
    position: relative;
    width: 100%;
    padding-top: 10px; /* Small top padding, body handles main offset */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-promotions-bonuses__hero-image-wrapper {
    width: 100%;
    max-height: 675px; /* Max height for hero image */
    overflow: hidden;
}

.page-promotions-bonuses__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-promotions-bonuses__hero-content {
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
    position: relative; /* Ensure content is in normal flow */
    z-index: 1; /* Ensure text is above any potential background elements */
}

.page-promotions-bonuses__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: bold;
    color: #F2C14E;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.05em;
}

.page-promotions-bonuses__description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #E5E5E5;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-bonuses__hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-promotions-bonuses__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
}

.page-promotions-bonuses__btn--primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
}

.page-promotions-bonuses__btn--primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-promotions-bonuses__btn--secondary {
    background-color: #111111;
    color: #F2C14E;
    border: 1px solid #3A2A12;
}

.page-promotions-bonuses__btn--secondary:hover {
    background-color: #1A1A1A;
    color: #FFD36B;
    border-color: #F2C14E;
    transform: translateY(-2px);
}

.page-promotions-bonuses__section-title {
    font-size: 2.5rem;
    color: #F2C14E;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-promotions-bonuses__section-intro {
    font-size: 1.1rem;
    color: #E5E5E5;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.page-promotions-bonuses__promotion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-promotions-bonuses__promotion-card {
    background-color: #111111;
    border-radius: 12px;
    overflow: hidden;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #3A2A12;
}

.page-promotions-bonuses__promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-promotions-bonuses__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #3A2A12;
}

.page-promotions-bonuses__card-title {
    font-size: 1.5rem;
    color: #FFD36B;
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.3;
}

.page-promotions-bonuses__card-text {
    font-size: 1rem;
    color: #FFF6D6;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions-bonuses__btn--card {
    width: 80%;
    max-width: 200px;
    padding: 12px 20px;
    font-size: 0.95rem;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
}

.page-promotions-bonuses__btn--card:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-promotions-bonuses__how-to-claim {
    padding: 60px 20px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.page-promotions-bonuses__steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 50px;
}

.page-promotions-bonuses__step-card {
    background-color: #111111;
    border-radius: 12px;
    padding: 30px;
    flex: 1 1 280px;
    max-width: 320px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid #3A2A12;
}

.page-promotions-bonuses__step-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #F2C14E);
}

.page-promotions-bonuses__step-title {
    font-size: 1.3rem;
    color: #FFD36B;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions-bonuses__step-text {
    font-size: 1rem;
    color: #FFF6D6;
    line-height: 1.5;
}

.page-promotions-bonuses__btn--center {
    margin-top: 20px;
    padding: 15px 40px;
    font-size: 1.1rem;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
}

.page-promotions-bonuses__btn--center:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-promotions-bonuses__terms-conditions {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.page-promotions-bonuses__terms-list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
    text-align: left;
}

.page-promotions-bonuses__term-item {
    background-color: #111111;
    border: 1px solid #3A2A12;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #FFF6D6;
    line-height: 1.5;
}

.page-promotions-bonuses__btn--small {
    padding: 10px 25px;
    font-size: 0.9rem;
    background-color: #111111;
    color: #F2C14E;
    border: 1px solid #3A2A12;
}

.page-promotions-bonuses__btn--small:hover {
    background-color: #1A1A1A;
    color: #FFD36B;
    border-color: #F2C14E;
    transform: translateY(-2px);
}

.page-promotions-bonuses__faq-section {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.page-promotions-bonuses__faq-item {
    background-color: #111111;
    border: 1px solid #3A2A12;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions-bonuses__faq-question {
    font-size: 1.3rem;
    color: #F2C14E;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions-bonuses__faq-answer {
    font-size: 1rem;
    color: #FFF6D6;
    line-height: 1.6;
}

.page-promotions-bonuses__cta-bottom {
    background-color: #111111;
    padding: 60px 20px;
    text-align: center;
    margin-top: 60px;
    border-top: 1px solid #3A2A12;
}

.page-promotions-bonuses__cta-title {
    font-size: 2.2rem;
    color: #F2C14E;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-promotions-bonuses__cta-text {
    font-size: 1.1rem;
    color: #E5E5E5;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

.page-promotions-bonuses__cta-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .page-promotions-bonuses__hero-content {
        padding: 30px 15px;
    }

    .page-promotions-bonuses__main-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .page-promotions-bonuses__description,
    .page-promotions-bonuses__section-intro,
    .page-promotions-bonuses__card-text,
    .page-promotions-bonuses__step-text,
    .page-promotions-bonuses__term-item,
    .page-promotions-bonuses__faq-answer,
    .page-promotions-bonuses__cta-text {
        font-size: 0.95rem;
    }

    .page-promotions-bonuses__section-title {
        font-size: 2rem;
    }

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

    .page-promotions-bonuses__hero-actions,
    .page-promotions-bonuses__cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .page-promotions-bonuses__btn,
    .page-promotions-bonuses__btn--center,
    .page-promotions-bonuses__btn--card {
        width: 100%;
        max-width: 300px;
    }

    .page-promotions-bonuses__steps-container {
        flex-direction: column;
        align-items: center;
    }

    .page-promotions-bonuses__step-card {
        max-width: 100%;
        flex: 1 1 auto;
    }

    .page-promotions-bonuses__terms-list {
        margin: 30px 0;
    }

    .page-promotions-bonuses__faq-question {
        font-size: 1.1rem;
    }

    .page-promotions-bonuses__cta-title {
        font-size: 1.8rem;
    }

    .page-promotions-bonuses__hero-image,
    .page-promotions-bonuses__card-image,
    .page-promotions-bonuses__step-icon {
        max-width: 100%;
        height: auto;
    }
    /* Ensure all images within .page-promotions-bonuses are responsive */
    .page-promotions-bonuses img {
        max-width: 100%;
        height: auto;
    }

    /* Content area images specifically */
    .page-promotions-bonuses__promotion-card img,
    .page-promotions-bonuses__step-card img {
        min-width: 200px; /* Enforce minimum size for content images */
        min-height: 200px;
    }
}

/* Ensure contrast for text on dark backgrounds */
.page-promotions-bonuses__main-title, .page-promotions-bonuses__section-title, .page-promotions-bonuses__card-title, .page-promotions-bonuses__step-title, .page-promotions-bonuses__faq-question, .page-promotions-bonuses__cta-title {
    color: #F2C14E; /* Primary color for titles, good contrast with #0A0A0A and #111111 */
}

.page-promotions-bonuses__description, .page-promotions-bonuses__section-intro, .page-promotions-bonuses__card-text, .page-promotions-bonuses__step-text, .page-promotions-bonuses__term-item, .page-promotions-bonuses__faq-answer, .page-promotions-bonuses__cta-text {
    color: #FFF6D6; /* Main text color, good contrast with #0A0A0A and #111111 */
}

.page-promotions-bonuses__btn--primary {
    /* Background is gradient, text is #111111 */
    color: #111111; /* Good contrast with #FFD86A and #DDA11D */
}

.page-promotions-bonuses__btn--secondary {
    background-color: #111111;
    color: #F2C14E; /* Good contrast with #111111 */
    border-color: #3A2A12; /* Border color */
}

.page-promotions-bonuses__btn--small {
    background-color: #111111;
    color: #F2C14E; /* Good contrast with #111111 */
    border-color: #3A2A12; /* Border color */
}

.page-promotions-bonuses__promotion-card, .page-promotions-bonuses__step-card, .page-promotions-bonuses__faq-item {
    background-color: #111111; /* Card background */
    border-color: #3A2A12; /* Border color */
}