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

/* Base styles for the page */
.page-promotions-new-user-bonus {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f4f7f6; /* Light background for contrast */
}

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

/* Hero Section */
.page-promotions-new-user-bonus__hero-section {
    background: linear-gradient(135deg, #0A2342 0%, #1A3F6C 100%); /* Dark blue gradient */
    color: #FFFFFF;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-new-user-bonus__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,pattern,dark_blue]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-promotions-new-user-bonus__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for emphasis */
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-new-user-bonus__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    color: #E0E0E0;
}

.page-promotions-new-user-bonus__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold accent for CTA */
    color: #0A2342; /* Dark blue text on gold */
    padding: 18px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.page-promotions-new-user-bonus__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user-bonus__cta-button--secondary {
    background-color: #DC3545; /* Red for secondary CTA */
    color: #FFFFFF; /* White text on red */
}

.page-promotions-new-user-bonus__cta-button--secondary:hover {
    background-color: #c82333; /* Darker red on hover */
}

.page-promotions-new-user-bonus__cta-button--final {
    background-color: #DC3545; /* Red for final CTA */
    color: #FFFFFF; /* White text on red */
    font-size: 1.5em;
    padding: 20px 40px;
}

.page-promotions-new-user-bonus__cta-button--final:hover {
    background-color: #c82333; /* Darker red on hover */
}

/* Content Sections */
.page-promotions-new-user-bonus__content-section {
    padding: 80px 0;
    background-color: #FFFFFF;
    border-bottom: 1px solid #eee;
}

.page-promotions-new-user-bonus__content-section:nth-of-type(even) {
    background-color: #fcfcfc;
}

.page-promotions-new-user-bonus__section-title {
    font-size: 2.5em;
    color: #0A2342; /* Dark blue for main titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-promotions-new-user-bonus__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold underline */
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-promotions-new-user-bonus__intro-text {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    color: #555;
}

/* Steps Grid */
.page-promotions-new-user-bonus__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-promotions-new-user-bonus__step-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.page-promotions-new-user-bonus__step-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-promotions-new-user-bonus__step-icon {
    width: 60px;
    height: 60px;
    background-color: #0A2342; /* Dark blue icon background */
    color: #FFD700; /* Gold number */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    margin: 0 auto 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-user-bonus__step-title {
    font-size: 1.8em;
    color: #0A2342;
    margin-bottom: 15px;
}

.page-promotions-new-user-bonus__step-description {
    color: #666;
    font-size: 1em;
    margin-bottom: 20px;
}

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

.page-promotions-new-user-bonus__inline-cta {
    display: inline-block;
    margin-top: 15px;
    background-color: #FFD700;
    color: #0A2342;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease;
}

.page-promotions-new-user-bonus__inline-cta:hover {
    background-color: #e6c200;
}

/* Bonus Details */
.page-promotions-new-user-bonus__bonus-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 900px;
}

.page-promotions-new-user-bonus__bonus-list li {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.page-promotions-new-user-bonus__bonus-list li:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions-new-user-bonus__bonus-list h3 {
    color: #0A2342;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-promotions-new-user-bonus__bonus-list p {
    color: #555;
    font-size: 1em;
}

.page-promotions-new-user-bonus__note {
    text-align: center;
    margin-top: 40px;
    font-style: italic;
    color: #777;
    font-size: 0.95em;
}

/* Why 68win Section */
.page-promotions-new-user-bonus__why-68win {
    background-color: #0A2342; /* Dark blue background */
    color: #E0E0E0;
}

.page-promotions-new-user-bonus__why-68win .page-promotions-new-user-bonus__section-title {
    color: #FFD700; /* Gold title on dark background */
}

.page-promotions-new-user-bonus__why-68win .page-promotions-new-user-bonus__section-title::after {
    background-color: #DC3545; /* Red underline */
}

.page-promotions-new-user-bonus__why-68win .page-promotions-new-user-bonus__intro-text {
    color: #C0C0C0;
}

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

.page-promotions-new-user-bonus__feature-item {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promotions-new-user-bonus__feature-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.page-promotions-new-user-bonus__feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-promotions-new-user-bonus__feature-item h3 {
    color: #FFD700; /* Gold for feature titles */
    font-size: 1.6em;
    margin-bottom: 15px;
}

.page-promotions-new-user-bonus__feature-item p {
    color: #E0E0E0;
    font-size: 0.95em;
}

/* FAQ Section */
.page-promotions-new-user-bonus__faq {
    background-color: #f4f7f6;
}

.page-promotions-new-user-bonus__faq-item {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px 30px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.page-promotions-new-user-bonus__faq-question {
    color: #0A2342;
    font-size: 1.4em;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.page-promotions-new-user-bonus__faq-answer {
    color: #666;
    font-size: 1em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

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

/* Final CTA Section */
.page-promotions-new-user-bonus__final-cta {
    background: linear-gradient(45deg, #DC3545 0%, #FFD700 100%); /* Red to Gold gradient */
    color: #FFFFFF;
    text-align: center;
    padding: 80px 0;
}

.page-promotions-new-user-bonus__final-cta .page-promotions-new-user-bonus__section-title {
    color: #FFFFFF;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.page-promotions-new-user-bonus__final-cta .page-promotions-new-user-bonus__section-title::after {
    background-color: #0A2342;
}

.page-promotions-new-user-bonus__final-cta .page-promotions-new-user-bonus__intro-text {
    color: #F0F0F0;
    margin-bottom: 50px;
}

/* 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.2em;
    }
    .page-promotions-new-user-bonus__section-title {
        font-size: 2em;
    }
    .page-promotions-new-user-bonus__step-title {
        font-size: 1.5em;
    }
    .page-promotions-new-user-bonus__features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions-new-user-bonus__hero-section {
        padding: 80px 0;
    }
    .page-promotions-new-user-bonus__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-new-user-bonus__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions-new-user-bonus__cta-button {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-promotions-new-user-bonus__content-section {
        padding: 60px 0;
    }
    .page-promotions-new-user-bonus__section-title {
        font-size: 1.8em;
    }
    .page-promotions-new-user-bonus__intro-text {
        font-size: 0.95em;
    }
    .page-promotions-new-user-bonus__steps-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-new-user-bonus__features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-promotions-new-user-bonus__hero-section {
        padding: 60px 0;
    }
    .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__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-new-user-bonus__section-title {
        font-size: 1.5em;
    }
    .page-promotions-new-user-bonus__step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
    }
    .page-promotions-new-user-bonus__faq-question {
        font-size: 1.2em;
    }
}