/* style/promotions-new-player-bonus.css */
.page-promotions-new-player-bonus {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

/* Hero Section */
.page-promotions-new-player-bonus__hero-section {
    background: linear-gradient(135deg, #2C3E50, #F39C12);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-new-player-bonus__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.page-promotions-new-player-bonus__hero-section .page-promotions-new-player-bonus__container {
    position: relative;
    z-index: 2;
}

.page-promotions-new-player-bonus__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-promotions-new-player-bonus__hero-image {
    max-width: 100%;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-promotions-new-player-bonus__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.page-promotions-new-player-bonus__section:nth-of-type(even) {
    background-color: #f2f2f2;
}

.page-promotions-new-player-bonus__section-title {
    font-size: 2.5em;
    color: #2C3E50;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-promotions-new-player-bonus__section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: #F39C12;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.page-promotions-new-player-bonus__text-content {
    font-size: 1.1em;
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
}

/* Buttons */
.page-promotions-new-player-bonus__btn {
    display: inline-block;
    background-color: #F39C12;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    margin-top: 20px;
}

.page-promotions-new-player-bonus__btn:hover {
    background-color: #e08e0b;
    transform: translateY(-2px);
}

.page-promotions-new-player-bonus__btn--primary {
    background-color: #F39C12;
}

.page-promotions-new-player-bonus__btn--primary:hover {
    background-color: #e08e0b;
}

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

.page-promotions-new-player-bonus__btn--secondary:hover {
    background-color: #1a2b3c;
}

.page-promotions-new-player-bonus__link {
    color: #F39C12;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-promotions-new-player-bonus__link:hover {
    color: #e08e0b;
    text-decoration: underline;
}

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

.page-promotions-new-player-bonus__feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #2C3E50;
}

.page-promotions-new-player-bonus__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-promotions-new-player-bonus__feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

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

/* Bonus Details Cards */
.page-promotions-new-player-bonus__bonus-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-new-player-bonus__bonus-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 5px solid #F39C12;
}

.page-promotions-new-player-bonus__bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-promotions-new-player-bonus__bonus-card-title {
    font-size: 1.6em;
    color: #2C3E50;
    margin-bottom: 15px;
}

.page-promotions-new-player-bonus__bonus-card-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* How to Claim Steps */
.page-promotions-new-player-bonus__step-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.page-promotions-new-player-bonus__step-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    border-left: 5px solid #F39C12;
}

.page-promotions-new-player-bonus__step-item h3 {
    font-size: 1.4em;
    color: #2C3E50;
    margin-bottom: 15px;
}

.page-promotions-new-player-bonus__step-item p {
    color: #555;
}

.page-promotions-new-player-bonus__step-icon-wrapper {
    background-color: #2C3E50;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-player-bonus__step-icon {
    width: 50px;
    height: 50px;
    filter: invert(100%); /* Make icons white */
}

/* Terms and Conditions & Responsible Gambling */
.page-promotions-new-player-bonus__list {
    list-style: disc inside;
    margin-left: 20px;
    font-size: 1.1em;
    color: #444;
}

.page-promotions-new-player-bonus__list li {
    margin-bottom: 10px;
}

.page-promotions-new-player-bonus__list strong {
    color: #2C3E50;
}

.page-promotions-new-player-bonus__image--large {
    max-width: 80%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.page-promotions-new-player-bonus__faq-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px 25px;
    transition: box-shadow 0.3s ease;
}

.page-promotions-new-player-bonus__faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.page-promotions-new-player-bonus__faq-question {
    font-size: 1.3em;
    color: #2C3E50;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-promotions-new-player-bonus__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    color: #F39C12;
    transition: transform 0.3s ease;
}

.page-promotions-new-player-bonus__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-promotions-new-player-bonus__faq-answer {
    font-size: 1.1em;
    color: #555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding-left: 10px;
    border-left: 3px solid #F39C12;
    margin-top: 10px;
}

.page-promotions-new-player-bonus__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding-bottom: 10px;
}

/* Final CTA */
.page-promotions-new-player-bonus__cta-final {
    text-align: center;
    background-color: #2C3E50;
    color: #fff;
    padding: 80px 0;
}

.page-promotions-new-player-bonus__cta-final .page-promotions-new-player-bonus__section-title {
    color: #F39C12;
}

.page-promotions-new-player-bonus__cta-final .page-promotions-new-player-bonus__text-content {
    color: #eee;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

.page-promotions-new-player-bonus__cta-final .page-promotions-new-player-bonus__link {
    color: #F39C12;
}

.page-promotions-new-player-bonus__cta-final .page-promotions-new-player-bonus__link:hover {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-new-player-bonus__hero-title {
        font-size: 2.8em;
    }
    .page-promotions-new-player-bonus__hero-subtitle {
        font-size: 1.3em;
    }
    .page-promotions-new-player-bonus__section-title {
        font-size: 2em;
    }
    .page-promotions-new-player-bonus__features-grid,
    .page-promotions-new-player-bonus__bonus-types,
    .page-promotions-new-player-bonus__step-list {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions-new-player-bonus__hero-section {
        padding: 80px 0 60px;
    }
    .page-promotions-new-player-bonus__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-new-player-bonus__hero-subtitle {
        font-size: 1.1em;
    }
    .page-promotions-new-player-bonus__section {
        padding: 40px 0;
    }
    .page-promotions-new-player-bonus__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-promotions-new-player-bonus__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-new-player-bonus__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    .page-promotions-new-player-bonus__features-grid,
    .page-promotions-new-player-bonus__bonus-types,
    .page-promotions-new-player-bonus__step-list {
        grid-template-columns: 1fr;
    }
    .page-promotions-new-player-bonus__faq-question {
        font-size: 1.2em;
    }
    .page-promotions-new-player-bonus__faq-answer {
        font-size: 1em;
    }
    .page-promotions-new-player-bonus__image--large {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .page-promotions-new-player-bonus__hero-section {
        padding: 60px 0 40px;
    }
    .page-promotions-new-player-bonus__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-new-player-bonus__hero-subtitle {
        font-size: 0.95em;
    }
    .page-promotions-new-player-bonus__section-title {
        font-size: 1.5em;
    }
    .page-promotions-new-player-bonus__btn {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }
    .page-promotions-new-player-bonus__btn--secondary {
        margin-top: 10px;
    }
}