.page-promo-latest-bonuses {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for light body background */
    background-color: #FFFFFF; /* Explicitly set for content area if needed, but body is already white */
}

/* Header offset for main content */
.page-promo-latest-bonuses {
    padding-top: var(--header-offset, 120px); /* Ensures content starts below fixed header */
}

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

/* Hero Section */
.page-promo-latest-bonuses__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    background-color: #000000; /* Dark background for hero */
    color: #FFFFFF; /* Light text on dark background */
    position: relative;
    overflow: hidden;
}

.page-promo-latest-bonuses__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-bottom: 40px;
}

.page-promo-latest-bonuses__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FCBC45; /* Highlight title with login button color */
    line-height: 1.2;
}

.page-promo-latest-bonuses__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #F0F0F0;
}

.page-promo-latest-bonuses__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-promo-latest-bonuses__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3; /* Overlay effect */
    object-fit: cover;
}

.page-promo-latest-bonuses__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* General Sections */
.page-promo-latest-bonuses__introduction-section,
.page-promo-latest-bonuses__types-section,
.page-promo-latest-bonuses__how-to-claim-section,
.page-promo-latest-bonuses__featured-bonuses-section,
.page-promo-latest-bonuses__terms-section,
.page-promo-latest-bonuses__faq-section,
.page-promo-latest-bonuses__cta-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.page-promo-latest-bonuses__introduction-section {
    background-color: #F8F8F8;
}
.page-promo-latest-bonuses__cta-section {
    background-color: #000000;
    color: #FFFFFF;
    text-align: center;
}
.page-promo-latest-bonuses__cta-title {
    color: #FCBC45;
}
.page-promo-latest-bonuses__cta-description {
    color: #F0F0F0;
}

.page-promo-latest-bonuses__section-title {
    font-size: 2.5em;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
}
.page-promo-latest-bonuses__cta-title {
    font-size: 2.5em;
    color: #FCBC45;
    text-align: center;
    margin-bottom: 40px;
}

.page-promo-latest-bonuses__section-paragraph {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 20px auto;
}
.page-promo-latest-bonuses__cta-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 20px auto;
    color: #F0F0F0;
}

/* Buttons */
.page-promo-latest-bonuses__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    text-align: center;
    min-width: 180px;
}

.page-promo-latest-bonuses__button--primary {
    background-color: #FCBC45; /* Login button color */
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-promo-latest-bonuses__button--primary:hover {
    background-color: #E0A83A;
    border-color: #E0A83A;
}

.page-promo-latest-bonuses__button--secondary {
    background-color: transparent;
    color: #FFFFFF; /* Register button color */
    border: 2px solid #FFFFFF;
}
.page-promo-latest-bonuses__hero-actions .page-promo-latest-bonuses__button--secondary {
    color: #FFFFFF; /* Ensure white text on transparent button in hero */
}
.page-promo-latest-bonuses__cta-actions .page-promo-latest-bonuses__button--secondary {
    color: #FCBC45; /* Yellow text on transparent button in CTA section */
    border-color: #FCBC45;
}

.page-promo-latest-bonuses__button--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #FCBC45; /* Hover to yellow on transparent button */
}
.page-promo-latest-bonuses__cta-actions .page-promo-latest-bonuses__button--secondary:hover {
    background-color: rgba(252, 188, 69, 0.1); /* Light yellow hover on transparent button */
    color: #FCBC45;
}


.page-promo-latest-bonuses__button--small {
    padding: 10px 20px;
    font-size: 0.9em;
    min-width: unset;
    background-color: #000000;
    color: #FCBC45;
    border: 1px solid #FCBC45;
}
.page-promo-latest-bonuses__button--small:hover {
    background-color: #333333;
    color: #FFFFFF;
}

/* Bonus Grid */
.page-promo-latest-bonuses__bonus-grid,
.page-promo-latest-bonuses__featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-promo-latest-bonuses__bonus-card,
.page-promo-latest-bonuses__featured-card {
    background-color: #F8F8F8;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: transform 0.3s ease;
}

.page-promo-latest-bonuses__bonus-card:hover,
.page-promo-latest-bonuses__featured-card:hover {
    transform: translateY(-5px);
}

.page-promo-latest-bonuses__bonus-card-image,
.page-promo-latest-bonuses__featured-card-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    border-bottom: 2px solid #FCBC45;
}

.page-promo-latest-bonuses__bonus-card-title,
.page-promo-latest-bonuses__featured-card-title {
    font-size: 1.5em;
    color: #000000;
    margin: 20px 15px 10px;
}

.page-promo-latest-bonuses__bonus-card-description,
.page-promo-latest-bonuses__featured-card-description {
    font-size: 0.95em;
    color: #555555;
    padding: 0 15px 15px;
    flex-grow: 1;
}

.page-promo-latest-bonuses__featured-card-features {
    list-style: none;
    padding: 0 15px 15px;
    margin: 0;
    text-align: left;
    color: #555555;
}
.page-promo-latest-bonuses__featured-card-features li {
    margin-bottom: 5px;
    padding-left: 20px;
    position: relative;
}
.page-promo-latest-bonuses__featured-card-features li::before {
    content: '✓';
    color: #FCBC45;
    position: absolute;
    left: 0;
}

.page-promo-latest-bonuses__bonus-card .page-promo-latest-bonuses__button--small,
.page-promo-latest-bonuses__featured-card .page-promo-latest-bonuses__button--small {
    margin: 0 15px 20px;
    align-self: center;
}

/* How to Claim Section */
.page-promo-latest-bonuses__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-promo-latest-bonuses__step-item {
    background-color: #F8F8F8;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-promo-latest-bonuses__step-title {
    font-size: 1.3em;
    color: #000000;
    margin-bottom: 15px;
}

.page-promo-latest-bonuses__step-description {
    color: #555555;
    margin-bottom: 20px;
}

/* Terms Section */
.page-promo-latest-bonuses__terms-list {
    list-style: disc;
    max-width: 900px;
    margin: 40px auto;
    padding-left: 40px;
    color: #555555;
}

.page-promo-latest-bonuses__terms-list li {
    margin-bottom: 15px;
    line-height: 1.8;
}

.page-promo-latest-bonuses__terms-list strong {
    color: #000000;
}

/* FAQ Section - Accordion */
.page-promo-latest-bonuses__faq-accordion {
    max-width: 900px;
    margin: 40px auto;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    overflow: hidden;
}

.page-promo-latest-bonuses__accordion-item {
    border-bottom: 1px solid #E0E0E0;
}
.page-promo-latest-bonuses__accordion-item:last-child {
    border-bottom: none;
}

.page-promo-latest-bonuses__accordion-header {
    background-color: #FCBC45;
    color: #000000;
    padding: 20px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-promo-latest-bonuses__accordion-header:hover {
    background-color: #E0A83A;
}

.page-promo-latest-bonuses__accordion-title {
    margin: 0;
    color: #000000;
    font-size: 1.2em;
}

.page-promo-latest-bonuses__accordion-icon {
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-promo-latest-bonuses__accordion-header.active .page-promo-latest-bonuses__accordion-icon {
    transform: rotate(45deg);
}

.page-promo-latest-bonuses__accordion-content {
    background-color: #FDFDFD;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promo-latest-bonuses__accordion-content.active {
    max-height: 200px; /* Adjust based on content */
    padding: 20px;
}

.page-promo-latest-bonuses__accordion-paragraph {
    color: #333333;
    margin: 0;
}

/* Call to Action Section */
.page-promo-latest-bonuses__cta-section {
    padding: 80px 20px;
    text-align: center;
}

.page-promo-latest-bonuses__cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promo-latest-bonuses__hero-title {
        font-size: 2.8em;
    }
    .page-promo-latest-bonuses__section-title,
    .page-promo-latest-bonuses__cta-title {
        font-size: 2em;
    }
    .page-promo-latest-bonuses__hero-section {
        padding: 40px 20px;
    }
    .page-promo-latest-bonuses__introduction-section,
    .page-promo-latest-bonuses__types-section,
    .page-promo-latest-bonuses__how-to-claim-section,
    .page-promo-latest-bonuses__featured-bonuses-section,
    .page-promo-latest-bonuses__terms-section,
    .page-promo-latest-bonuses__faq-section,
    .page-promo-latest-bonuses__cta-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .page-promo-latest-bonuses {
        padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
    }
    .page-promo-latest-bonuses__hero-title {
        font-size: 2.2em;
    }
    .page-promo-latest-bonuses__hero-description {
        font-size: 1em;
    }
    .page-promo-latest-bonuses__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-promo-latest-bonuses__button {
        width: 100%;
        max-width: 300px;
    }
    .page-promo-latest-bonuses__section-title,
    .page-promo-latest-bonuses__cta-title {
        font-size: 1.8em;
    }
    .page-promo-latest-bonuses__section-paragraph,
    .page-promo-latest-bonuses__cta-description {
        font-size: 0.95em;
    }
    .page-promo-latest-bonuses__bonus-grid,
    .page-promo-latest-bonuses__featured-grid,
    .page-promo-latest-bonuses__steps-list {
        grid-template-columns: 1fr;
    }
    .page-promo-latest-bonuses__accordion-header {
        font-size: 1em;
        padding: 15px;
    }
    .page-promo-latest-bonuses__accordion-content {
        padding: 15px;
    }

    /* Mobile content area image constraint */
    .page-promo-latest-bonuses img {
        max-width: 100%;
        height: auto;
    }
    /* Ensure content area images are not smaller than 200px */
    .page-promo-latest-bonuses__bonus-card-image,
    .page-promo-latest-bonuses__featured-card-image {
        min-width: 200px;
        min-height: 200px;
        height: auto; /* Allow auto height for responsiveness */
    }
}

@media (max-width: 480px) {
    .page-promo-latest-bonuses__hero-title {
        font-size: 1.8em;
    }
    .page-promo-latest-bonuses__section-title,
    .page-promo-latest-bonuses__cta-title {
        font-size: 1.5em;
    }
    .page-promo-latest-bonuses__bonus-card-title,
    .page-promo-latest-bonuses__featured-card-title {
        font-size: 1.3em;
    }
}