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

/* General Page Styling */
.page-promotions-new-user-bonus {
    font-family: 'Arial', sans-serif;
    color: #F8F8F8; /* Light text on dark background */
    line-height: 1.6;
    background-color: #0A192F; /* Primary dark background */
}

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

.page-promotions-new-user-bonus__section-padding {
    padding: 80px 0;
}

.page-promotions-new-user-bonus__bg-dark {
    background-color: #0A192F; /* Primary dark background */
}

.page-promotions-new-user-bonus__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for titles */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-new-user-bonus__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #F8F8F8;
}

/* Hero Section */
.page-promotions-new-user-bonus__hero-section {
    background: linear-gradient(135deg, #0A192F 0%, #301934 100%);
    color: #F8F8F8;
    text-align: center;
    padding: 100px 0 50px;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700;
}

.page-promotions-new-user-bonus__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold */
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    font-weight: 900;
    line-height: 1.2;
}

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

.page-promotions-new-user-bonus__hero-image {
    max-width: 100%;
    height: auto;
    margin-top: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

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

.page-promotions-new-user-bonus__button--primary {
    background-color: #FFD700; /* Gold */
    color: #0A192F; /* Dark text on gold */
    border: 2px solid #FFD700;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions-new-user-bonus__button--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-promotions-new-user-bonus__button--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
    margin-left: 20px;
}

.page-promotions-new-user-bonus__button--secondary:hover {
    background-color: #FFD700;
    color: #0A192F; /* Dark text on gold */
    transform: translateY(-3px);
}

.page-promotions-new-user-bonus__button--small {
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 30px;
    margin-top: 15px;
}

.page-promotions-new-user-bonus__button--center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    max-width: 350px;
}

/* Intro Section */
.page-promotions-new-user-bonus__intro-section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #E0E0E0;
    text-align: justify;
}

/* Offer Details Section */
.page-promotions-new-user-bonus__offer-details .page-promotions-new-user-bonus__section-title,
.page-promotions-new-user-bonus__offer-details .page-promotions-new-user-bonus__section-description {
    color: #FFD700;
}

.page-promotions-new-user-bonus__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.page-promotions-new-user-bonus__grid-item {
    background-color: #1A293F;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border: 1px solid #FFD700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-new-user-bonus__grid-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.page-promotions-new-user-bonus__grid-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

.page-promotions-new-user-bonus__grid-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-new-user-bonus__grid-item p {
    font-size: 1em;
    color: #E0E0E0;
    margin-bottom: 15px;
    text-align: justify;
}

.page-promotions-new-user-bonus__grid-item ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 20px;
}

.page-promotions-new-user-bonus__grid-item ul li {
    color: #F8F8F8;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.page-promotions-new-user-bonus__grid-item ul li::before {
    content: '✓';
    color: #FFD700;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* How to Claim Section */
.page-promotions-new-user-bonus__steps {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-new-user-bonus__step-item {
    background-color: #1A293F;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border: 1px solid #FFD700;
    flex: 1 1 calc(25% - 30px);
    min-width: 280px;
    position: relative;
}

.page-promotions-new-user-bonus__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #FFD700;
    color: #0A192F;
    border-radius: 50%;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

.page-promotions-new-user-bonus__step-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-new-user-bonus__step-item p {
    font-size: 1em;
    color: #E0E0E0;
    text-align: justify;
}

.page-promotions-new-user-bonus__process-image {
    max-width: 100%;
    height: auto;
    margin-top: 60px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Terms & Conditions Section */
.page-promotions-new-user-bonus__terms-conditions .page-promotions-new-user-bonus__section-title,
.page-promotions-new-user-bonus__terms-conditions .page-promotions-new-user-bonus__section-description {
    color: #FFD700;
}

.page-promotions-new-user-bonus__text-block {
    background-color: #1A293F;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border: 1px solid #FFD700;
    margin-top: 40px;
}

.page-promotions-new-user-bonus__text-block h3 {
    font-size: 1.8em;
    color: #FFD700; /* Gold */
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-new-user-bonus__text-block p {
    font-size: 1.1em;
    color: #E0E0E0;
    margin-bottom: 15px;
    text-align: justify;
}

/* Why Choose Section */
.page-promotions-new-user-bonus__advantages {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-new-user-bonus__advantage-item {
    background-color: #1A293F;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border: 1px solid #FFD700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-new-user-bonus__advantage-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.page-promotions-new-user-bonus__advantage-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

.page-promotions-new-user-bonus__advantage-title {
    font-size: 1.7em;
    color: #FFD700; /* Gold */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions-new-user-bonus__advantage-item p {
    font-size: 1em;
    color: #E0E0E0;
    text-align: justify;
}

/* Call to Action Section */
.page-promotions-new-user-bonus__cta-section {
    background: linear-gradient(45deg, #0A192F, #301934);
    text-align: center;
    border-top: 5px solid #FFD700;
    border-bottom: 5px solid #FFD700;
}

.page-promotions-new-user-bonus__cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-promotions-new-user-bonus__cta-section .page-promotions-new-user-bonus__section-title,
.page-promotions-new-user-bonus__cta-section .page-promotions-new-user-bonus__section-description {
    color: #FFD700;
}

.page-promotions-new-user-bonus__cta-buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-promotions-new-user-bonus__cta-image {
    max-width: 80%;
    height: auto;
    margin-top: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* FAQ Section */
.page-promotions-new-user-bonus__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-new-user-bonus__faq-item {
    background-color: #1A293F;
    border: 1px solid #FFD700;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user-bonus__faq-question {
    padding: 20px 30px;
    cursor: pointer;
    font-size: 1.3em;
    color: #FFD700; /* Gold */
    font-weight: bold;
    position: relative;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-promotions-new-user-bonus__faq-question:hover {
    background-color: #2A394F;
}

.page-promotions-new-user-bonus__faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

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

.page-promotions-new-user-bonus__faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: #0A192F;
}

.page-promotions-new-user-bonus__faq-item.active .page-promotions-new-user-bonus__faq-answer {
    max-height: 200px; /* Adjust based on content */
    padding: 20px 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.page-promotions-new-user-bonus__faq-answer p {
    color: #E0E0E0;
    font-size: 1em;
    text-align: justify;
}

/* Responsible Gaming Section */
.page-promotions-new-user-bonus__responsible-gaming p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #E0E0E0;
    text-align: justify;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-new-user-bonus__hero-title {
        font-size: 2.8em;
    }
    .page-promotions-new-user-bonus__hero-subtitle {
        font-size: 1.3em;
    }
    .page-promotions-new-user-bonus__section-title {
        font-size: 2.2em;
    }
    .page-promotions-new-user-bonus__grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-promotions-new-user-bonus__steps {
        flex-direction: column;
        align-items: center;
    }
    .page-promotions-new-user-bonus__step-item {
        flex: 1 1 90%;
    }
    .page-promotions-new-user-bonus__advantages {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions-new-user-bonus__hero-section {
        padding: 80px 0 40px;
    }
    .page-promotions-new-user-bonus__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-new-user-bonus__hero-subtitle {
        font-size: 1.1em;
    }
    .page-promotions-new-user-bonus__section-padding {
        padding: 60px 0;
    }
    .page-promotions-new-user-bonus__section-title {
        font-size: 1.8em;
    }
    .page-promotions-new-user-bonus__section-description {
        font-size: 1em;
    }
    .page-promotions-new-user-bonus__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-new-user-bonus__button--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    .page-promotions-new-user-bonus__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-promotions-new-user-bonus__grid-title,
    .page-promotions-new-user-bonus__text-block h3,
    .page-promotions-new-user-bonus__advantage-title {
        font-size: 1.5em;
    }
    .page-promotions-new-user-bonus__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-promotions-new-user-bonus__faq-item.active .page-promotions-new-user-bonus__faq-answer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-promotions-new-user-bonus__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-new-user-bonus__hero-subtitle {
        font-size: 0.9em;
    }
    .page-promotions-new-user-bonus__section-title {
        font-size: 1.5em;
    }
    .page-promotions-new-user-bonus__button {
        width: 100%;
        box-sizing: border-box;
    }
    .page-promotions-new-user-bonus__button--secondary {
        margin-top: 10px;
    }
    .page-promotions-new-user-bonus__grid-item,
    .page-promotions-new-user-bonus__advantage-item {
        padding: 20px;
    }
    .page-promotions-new-user-bonus__grid-icon,
    .page-promotions-new-user-bonus__advantage-icon {
        width: 60px;
        height: 60px;
    }
    .page-promotions-new-user-bonus__step-item {
        min-width: unset;
        width: 100%;
    }
    .page-promotions-new-user-bonus__text-block {
        padding: 25px;
    }
    .page-promotions-new-user-bonus__faq-question {
        font-size: 1em;
    }
}