/* style/promotions-new-player-bonuses.css */
/* Body background is #000000 (dark), so main text should be light (#ffffff) */

.page-promotions-new-player-bonuses {
    color: #ffffff; /* Default text color for dark background */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.page-promotions-new-player-bonuses__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-promotions-new-player-bonuses__section-title {
    font-size: 2.5em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: #26A9E0;
    line-height: 1.2;
}

.page-promotions-new-player-bonuses__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: center;
}

.page-promotions-new-player-bonuses__btn-primary,
.page-promotions-new-player-bonuses__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-promotions-new-player-bonuses__btn-primary {
    background-color: #26A9E0;
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-promotions-new-player-bonuses__btn-primary:hover {
    background-color: #1a7fb3;
    border-color: #1a7fb3;
}

.page-promotions-new-player-bonuses__btn-secondary {
    background-color: transparent;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-promotions-new-player-bonuses__btn-secondary:hover {
    background-color: #26A9E0;
    color: #ffffff;
}

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

.page-promotions-new-player-bonuses__hero-image-wrapper {
    width: 100%;
    max-height: 700px; /* Limit height for aesthetic */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

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

.page-promotions-new-player-bonuses__hero-content {
    max-width: 900px;
    text-align: center;
    padding: 0 20px;
    z-index: 1;
    color: #ffffff; /* Ensure text is white on dark implicit background */
}

.page-promotions-new-player-bonuses__main-title {
    font-size: clamp(2em, 4vw, 3.5em); /* Responsive H1 font size */
    font-weight: 900;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-new-player-bonuses__intro-text {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-promotions-new-player-bonuses__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Styling */
.page-promotions-new-player-bonuses__dark-bg {
    background-color: #000000; /* Body background is #000000, so this section matches */
    color: #ffffff;
    padding: 80px 0;
}

.page-promotions-new-player-bonuses__light-bg {
    background-color: #1a1a1a; /* A slightly lighter dark background for contrast */
    color: #ffffff;
    padding: 80px 0;
}

.page-promotions-new-player-bonuses__overview-section .page-promotions-new-player-bonuses__text-block {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-new-player-bonuses__bonus-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    text-align: left;
}

.page-promotions-new-player-bonuses__bonus-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    font-size: 1.1em;
    border-left: 5px solid #26A9E0;
}

/* How-To Section */
.page-promotions-new-player-bonuses__steps-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-new-player-bonuses__step-card {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-promotions-new-player-bonuses__step-title {
    font-size: 1.5em;
    color: #26A9E0;
    margin-bottom: 15px;
}

.page-promotions-new-player-bonuses__step-description {
    font-size: 1em;
    color: #e0e0e0;
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-promotions-new-player-bonuses__step-image {
    display: block;
    margin: 50px auto 0 auto;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Detailed Bonuses Section */
.page-promotions-new-player-bonuses__bonus-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-new-player-bonuses__bonus-card {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.page-promotions-new-player-bonuses__bonus-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.page-promotions-new-player-bonuses__bonus-card-title {
    font-size: 1.4em;
    color: #26A9E0;
    margin-bottom: 10px;
}

.page-promotions-new-player-bonuses__bonus-card-description {
    font-size: 1em;
    color: #e0e0e0;
    flex-grow: 1;
}

/* Terms Section */
.page-promotions-new-player-bonuses__terms-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-promotions-new-player-bonuses__terms-item {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #EA7C07; /* Use login color for emphasis */
}

.page-promotions-new-player-bonuses__terms-item-title {
    font-size: 1.3em;
    color: #EA7C07;
    margin-bottom: 10px;
}

.page-promotions-new-player-bonuses__terms-item-description {
    font-size: 1em;
    color: #e0e0e0;
}

/* Why Choose Section */
.page-promotions-new-player-bonuses__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-new-player-bonuses__feature-card {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.page-promotions-new-player-bonuses__feature-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.page-promotions-new-player-bonuses__feature-title {
    font-size: 1.4em;
    color: #26A9E0;
    margin-bottom: 10px;
}

.page-promotions-new-player-bonuses__feature-description {
    font-size: 1em;
    color: #e0e0e0;
    flex-grow: 1;
}

/* FAQ Section */
.page-promotions-new-player-bonuses__faq-list {
    margin-top: 40px;
}

.page-promotions-new-player-bonuses__faq-item {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-promotions-new-player-bonuses__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: #ffffff;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-promotions-new-player-bonuses__faq-question::-webkit-details-marker,
.page-promotions-new-player-bonuses__faq-question::marker {
    display: none;
}

.page-promotions-new-player-bonuses__faq-qtext {
    flex-grow: 1;
    color: #26A9E0;
}

.page-promotions-new-player-bonuses__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: #ffffff;
}

.page-promotions-new-player-bonuses__faq-answer {
    padding: 15px 25px 20px;
    font-size: 1em;
    color: #e0e0e0;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.page-promotions-new-player-bonuses__faq-item[open] .page-promotions-new-player-bonuses__faq-question {
    border-bottom: none;
}

/* Final CTA Section */
.page-promotions-new-player-bonuses__cta-final-section .page-promotions-new-player-bonuses__text-block {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions-new-player-bonuses__hero-content {
        max-width: 768px;
    }
}

@media (max-width: 768px) {
    .page-promotions-new-player-bonuses__section-title {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .page-promotions-new-player-bonuses__text-block,
    .page-promotions-new-player-bonuses__intro-text,
    .page-promotions-new-player-bonuses__bonus-item,
    .page-promotions-new-player-bonuses__step-description,
    .page-promotions-new-player-bonuses__bonus-card-description,
    .page-promotions-new-player-bonuses__terms-item-description,
    .page-promotions-new-player-bonuses__feature-description,
    .page-promotions-new-player-bonuses__faq-answer {
        font-size: 1em;
    }

    .page-promotions-new-player-bonuses__hero-section,
    .page-promotions-new-player-bonuses__dark-bg,
    .page-promotions-new-player-bonuses__light-bg {
        padding: 60px 0;
    }

    .page-promotions-new-player-bonuses__hero-content {
        padding: 0 15px;
    }

    .page-promotions-new-player-bonuses__main-title {
        font-size: 2.2em;
    }

    .page-promotions-new-player-bonuses__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-promotions-new-player-bonuses__btn-primary,
    .page-promotions-new-player-bonuses__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-promotions-new-player-bonuses__container {
        padding: 0 15px;
    }

    /* Mobile image, video, and container adaptations */
    .page-promotions-new-player-bonuses img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-promotions-new-player-bonuses__hero-image-wrapper,
    .page-promotions-new-player-bonuses__steps-wrapper,
    .page-promotions-new-player-bonuses__bonus-cards-grid,
    .page-promotions-new-player-bonuses__features-grid,
    .page-promotions-new-player-bonuses__bonus-list,
    .page-promotions-new-player-bonuses__terms-list,
    .page-promotions-new-player-bonuses__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-promotions-new-player-bonuses__hero-section {
        padding-top: 10px !important;
    }

    .page-promotions-new-player-bonuses__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }

    .page-promotions-new-player-bonuses__faq-answer {
        padding: 10px 20px 15px;
    }

    .page-promotions-new-player-bonuses__step-card,
    .page-promotions-new-player-bonuses__bonus-card,
    .page-promotions-new-player-bonuses__feature-card {
        padding: 20px;
    }

    .page-promotions-new-player-bonuses__step-title,
    .page-promotions-new-player-bonuses__bonus-card-title,
    .page-promotions-new-player-bonuses__feature-title,
    .page-promotions-new-player-bonuses__terms-item-title {
        font-size: 1.3em;
    }
}

@media (max-width: 480px) {
    .page-promotions-new-player-bonuses__main-title {
        font-size: 1.8em;
    }

    .page-promotions-new-player-bonuses__section-title {
        font-size: 1.8em;
    }

    .page-promotions-new-player-bonuses__hero-section,
    .page-promotions-new-player-bonuses__dark-bg,
    .page-promotions-new-player-bonuses__light-bg {
        padding: 40px 0;
    }
}