/* style/promotions-new-player-bonus.css */

/* Base styles for the page content */
.page-promotions-new-player-bonus {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey for general text on dark background */
    background-color: #0A244A; /* Main dark blue background */
    line-height: 1.6;
}

.page-promotions-new-player-bonus__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-promotions-new-player-bonus__section {
    padding: 60px 0;
    text-align: center;
}

.page-promotions-new-player-bonus__section:nth-child(even) {
    background-color: #1A3A5F; /* Slightly lighter dark blue for alternating sections */
}

.page-promotions-new-player-bonus__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold accent for titles */
    margin-bottom: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-promotions-new-player-bonus__main-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-promotions-new-player-bonus__hero-description {
    font-size: 1.3em;
    color: #F0F0F0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.page-promotions-new-player-bonus__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.page-promotions-new-player-bonus__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #0A244A; /* Dark blue text */
    border: 2px solid #FFD700;
}

.page-promotions-new-player-bonus__btn--primary:hover {
    background-color: #E0B500; /* Darker gold on hover */
    border-color: #E0B500;
}

.page-promotions-new-player-bonus__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    margin-left: 20px;
}

.page-promotions-new-player-bonus__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A244A;
}

.page-promotions-new-player-bonus__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    margin-top: 20px;
}

.page-promotions-new-player-bonus__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
    margin-top: 30px;
}

.page-promotions-new-player-bonus__btn--xl {
    padding: 22px 45px;
    font-size: 1.4em;
    margin-top: 40px;
    min-width: 300px;
}

/* Hero Section */
.page-promotions-new-player-bonus__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, #0A244A 0%, #1A3A5F 100%); /* Gradient background */
    color: #F0F0F0;
    position: relative;
    overflow: hidden;
}

.page-promotions-new-player-bonus__hero-content {
    z-index: 1;
    position: relative;
    text-align: center;
    max-width: 900px;
}

.page-promotions-new-player-bonus__cta-group {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.page-promotions-new-player-bonus__hero-image-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0.15;
    z-index: 0;
    width: 60%;
    height: 100%;
    overflow: hidden;
}

.page-promotions-new-player-bonus__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Intro Section */
.page-promotions-new-player-bonus__intro p {
    max-width: 900px;
    margin: 20px auto;
    font-size: 1.1em;
    color: #E0E0E0;
}

.page-promotions-new-player-bonus__intro a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions-new-player-bonus__intro a:hover {
    text-decoration: underline;
}

/* Bonus Types Grid */
.page-promotions-new-player-bonus__bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-promotions-new-player-bonus__bonus-item {
    background-color: #0A244A; /* Dark blue background for items */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    text-align: center;
    border: 1px solid #FFD70030; /* Subtle gold border */
}

.page-promotions-new-player-bonus__bonus-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD70080); /* Gold glow effect */
}

.page-promotions-new-player-bonus__bonus-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold for bonus titles */
    margin-bottom: 15px;
}

.page-promotions-new-player-bonus__bonus-description {
    font-size: 1em;
    color: #C0C0C0;
    margin-bottom: 25px;
}

/* How to Claim Section */
.page-promotions-new-player-bonus__how-to-claim ol {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    margin-top: 40px;
}

.page-promotions-new-player-bonus__how-to-claim li {
    position: relative;
    padding-left: 80px;
    margin-bottom: 40px;
    text-align: left;
}

.page-promotions-new-player-bonus__how-to-claim li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background-color: #FFD700; /* Gold step number */
    color: #0A244A; /* Dark blue text on gold */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-player-bonus__step-title {
    font-size: 1.6em;
    color: #FFD700; /* Gold for step titles */
    margin-bottom: 10px;
}

.page-promotions-new-player-bonus__how-to-claim p {
    color: #E0E0E0;
    font-size: 1.05em;
}

.page-promotions-new-player-bonus__how-to-claim p a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions-new-player-bonus__how-to-claim p a:hover {
    text-decoration: underline;
}

.page-promotions-new-player-bonus__step-image {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.page-promotions-new-player-bonus__cta-text {
    font-size: 1.2em;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #F0F0F0;
    font-weight: bold;
}

/* Terms and Conditions */
.page-promotions-new-player-bonus__terms-conditions .page-promotions-new-player-bonus__list {
    list-style: disc;
    text-align: left;
    max-width: 900px;
    margin: 40px auto;
    color: #C0C0C0;
    padding-left: 25px;
}

.page-promotions-new-player-bonus__terms-conditions .page-promotions-new-player-bonus__list li {
    margin-bottom: 15px;
    font-size: 1.05em;
}

.page-promotions-new-player-bonus__terms-conditions .page-promotions-new-player-bonus__list li strong {
    color: #FFD700;
}

/* Why Choose Section */
.page-promotions-new-player-bonus__why-choose p {
    max-width: 900px;
    margin: 20px auto;
    font-size: 1.1em;
    color: #E0E0E0;
}

.page-promotions-new-player-bonus__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-promotions-new-player-bonus__feature-item {
    background-color: #1A3A5F; /* Lighter dark blue for feature items */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    border: 1px solid #FFD70020;
}

.page-promotions-new-player-bonus__feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 4px #FFD70060); /* Subtle glow */
}

.page-promotions-new-player-bonus__feature-title {
    font-size: 1.7em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-promotions-new-player-bonus__feature-item p {
    font-size: 1em;
    color: #C0C0C0;
    margin: 0;
}

.page-promotions-new-player-bonus__feature-item .page-promotions-new-player-bonus__btn {
    margin-top: 25px;
}

/* FAQ Section */
.page-promotions-new-player-bonus__faq {
    background-color: #0A244A;
}

.page-promotions-new-player-bonus__faq-item {
    background-color: #1A3A5F; /* Lighter dark blue for FAQ items */
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    border-left: 5px solid #FFD700;
}

.page-promotions-new-player-bonus__faq-question {
    font-size: 1.4em;
    color: #FFD700; /* Gold for FAQ questions */
    margin-bottom: 10px;
    cursor: pointer;
}

.page-promotions-new-player-bonus__faq-answer {
    font-size: 1.05em;
    color: #E0E0E0;
    display: block; /* Ensure answer is visible */
}

/* Final CTA Section */
.page-promotions-new-player-bonus__cta-final {
    background: linear-gradient(135deg, #1A3A5F 0%, #0A244A 100%);
    padding: 80px 20px;
}

.page-promotions-new-player-bonus__cta-final-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-promotions-new-player-bonus__cta-final .page-promotions-new-player-bonus__section-title {
    font-size: 3em;
    margin-bottom: 30px;
}

.page-promotions-new-player-bonus__cta-final p {
    font-size: 1.2em;
    color: #F0F0F0;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-new-player-bonus__main-title {
        font-size: 2.8em;
    }

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

    .page-promotions-new-player-bonus__hero-description {
        font-size: 1.1em;
    }

    .page-promotions-new-player-bonus__bonus-grid, 
    .page-promotions-new-player-bonus__feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .page-promotions-new-player-bonus__hero-image-wrapper {
        width: 80%;
    }
}

@media (max-width: 768px) {
    .page-promotions-new-player-bonus__hero-section {
        padding: 80px 20px;
    }

    .page-promotions-new-player-bonus__main-title {
        font-size: 2.4em;
    }

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

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

    .page-promotions-new-player-bonus__btn--secondary {
        margin-left: 0;
    }

    .page-promotions-new-player-bonus__how-to-claim li {
        padding-left: 60px;
    }

    .page-promotions-new-player-bonus__how-to-claim li::before {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
    }

    .page-promotions-new-player-bonus__step-title {
        font-size: 1.4em;
    }

    .page-promotions-new-player-bonus__cta-final .page-promotions-new-player-bonus__section-title {
        font-size: 2.5em;
    }

    .page-promotions-new-player-bonus__hero-image-wrapper {
        width: 100%;
        opacity: 0.1;
    }
}

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

    .page-promotions-new-player-bonus__section-title {
        font-size: 1.6em;
    }

    .page-promotions-new-player-bonus__hero-description,
    .page-promotions-new-player-bonus__intro p,
    .page-promotions-new-player-bonus__bonus-description,
    .page-promotions-new-player-bonus__how-to-claim p,
    .page-promotions-new-player-bonus__terms-conditions .page-promotions-new-player-bonus__list li,
    .page-promotions-new-player-bonus__feature-item p,
    .page-promotions-new-player-bonus__faq-answer,
    .page-promotions-new-player-bonus__cta-final p {
        font-size: 0.95em;
    }

    .page-promotions-new-player-bonus__btn {
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-promotions-new-player-bonus__btn--xl {
        min-width: unset;
        width: 100%;
    }

    .page-promotions-new-player-bonus__bonus-title,
    .page-promotions-new-player-bonus__feature-title,
    .page-promotions-new-player-bonus__faq-question {
        font-size: 1.3em;
    }
}