/* style/promotions-new-user-bonus.css */
.page-promotions-new-user-bonus {
    color: #333333; /* Body background is light, so text should be dark */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-promotions-new-user-bonus__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background: #FFFFFF;
    text-align: center;
}

.page-promotions-new-user-bonus__hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

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

.page-promotions-new-user-bonus__hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-promotions-new-user-bonus__main-title {
    font-size: clamp(2em, 4vw, 3.2em);
    font-weight: 700;
    color: #26A9E0;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-promotions-new-user-bonus__description,
.page-promotions-new-user-bonus__section-subtitle {
    font-size: 1.1em;
    color: #555555;
    margin-bottom: 30px;
}

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

.page-promotions-new-user-bonus__cta-buttons--center {
    margin-top: 40px;
}

.page-promotions-new-user-bonus__btn-primary,
.page-promotions-new-user-bonus__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

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

.page-promotions-new-user-bonus__btn-primary:hover {
    background: #1e87c0;
    border-color: #1e87c0;
}

.page-promotions-new-user-bonus__btn-secondary {
    background: #ffffff;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-promotions-new-user-bonus__btn-secondary:hover {
    background: #f0f8ff;
    color: #1e87c0;
    border-color: #1e87c0;
}

.page-promotions-new-user-bonus__btn-primary--large,
.page-promotions-new-user-bonus__btn-secondary--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-promotions-new-user-bonus__section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

.page-promotions-new-user-bonus__section-title {
    font-size: clamp(1.8em, 3.5vw, 2.5em);
    font-weight: 700;
    color: #26A9E0;
    margin-bottom: 15px;
}

/* Video Section */
.page-promotions-new-user-bonus__video-section {
    padding: 60px 20px;
    background: #FFFFFF;
    text-align: center;
}

.page-promotions-new-user-bonus__video-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.page-promotions-new-user-bonus__video-link-wrapper {
    display: block;
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
}

.page-promotions-new-user-bonus__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    cursor: pointer;
}

/* Benefits Section */
.page-promotions-new-user-bonus__benefits-section {
    padding: 60px 20px;
    background: #FFFFFF;
}

.page-promotions-new-user-bonus__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-promotions-new-user-bonus__benefit-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    padding: 30px;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.page-promotions-new-user-bonus__benefit-icon {
    width: 100%;
    height: auto;
    max-width: 250px;
    margin-bottom: 20px;
    border-radius: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-new-user-bonus__benefit-title {
    font-size: 1.4em;
    font-weight: 600;
    color: #26A9E0;
    margin-bottom: 15px;
}

.page-promotions-new-user-bonus__benefit-description {
    color: #555555;
    font-size: 0.95em;
}

/* How to Register Section */
.page-promotions-new-user-bonus__how-to-register-section {
    padding: 60px 20px;
    background: #26A9E0;
    color: #ffffff;
}

.page-promotions-new-user-bonus__how-to-register-section .page-promotions-new-user-bonus__section-title,
.page-promotions-new-user-bonus__how-to-register-section .page-promotions-new-user-bonus__section-subtitle {
    color: #ffffff;
}

.page-promotions-new-user-bonus__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-promotions-new-user-bonus__step-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-promotions-new-user-bonus__step-image {
    width: 100%;
    height: auto;
    max-width: 300px;
    margin-bottom: 20px;
    border-radius: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-new-user-bonus__step-title {
    font-size: 1.4em;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.page-promotions-new-user-bonus__step-description {
    color: #f0f0f0;
    font-size: 0.95em;
}

/* Bonus Details Section */
.page-promotions-new-user-bonus__bonus-details-section {
    padding: 60px 20px;
    background: #FFFFFF;
}

.page-promotions-new-user-bonus__bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-promotions-new-user-bonus__bonus-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    padding: 30px;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.page-promotions-new-user-bonus__bonus-image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    display: block;
}

.page-promotions-new-user-bonus__bonus-title {
    font-size: 1.4em;
    font-weight: 600;
    color: #26A9E0;
    margin-bottom: 15px;
}

.page-promotions-new-user-bonus__bonus-description {
    color: #555555;
    font-size: 0.95em;
}

/* Games Section */
.page-promotions-new-user-bonus__games-section {
    padding: 60px 20px;
    background: #26A9E0;
    color: #ffffff;
}

.page-promotions-new-user-bonus__games-section .page-promotions-new-user-bonus__section-title,
.page-promotions-new-user-bonus__games-section .page-promotions-new-user-bonus__section-subtitle {
    color: #ffffff;
}

.page-promotions-new-user-bonus__games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-promotions-new-user-bonus__game-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-promotions-new-user-bonus__game-image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    display: block;
}

.page-promotions-new-user-bonus__game-title {
    font-size: 1.4em;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.page-promotions-new-user-bonus__game-title a {
    color: #ffffff;
    text-decoration: none;
}

.page-promotions-new-user-bonus__game-title a:hover {
    text-decoration: underline;
}

.page-promotions-new-user-bonus__game-description {
    color: #f0f0f0;
    font-size: 0.95em;
}

/* FAQ Section */
.page-promotions-new-user-bonus__faq-section {
    padding: 60px 20px;
    background: #FFFFFF;
}

.page-promotions-new-user-bonus__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-promotions-new-user-bonus__faq-item {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-promotions-new-user-bonus__faq-item summary {
    list-style: none; /* Remove default marker */
}

.page-promotions-new-user-bonus__faq-item summary::-webkit-details-marker {
    display: none; /* Remove default marker for WebKit */
}

.page-promotions-new-user-bonus__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.1em;
    font-weight: 600;
    color: #26A9E0;
    cursor: pointer;
    background: #f0f8ff;
    border-bottom: 1px solid #e0e0e0;
}

.page-promotions-new-user-bonus__faq-item[open] .page-promotions-new-user-bonus__faq-question {
    border-bottom: 1px solid #d0d0d0;
}

.page-promotions-new-user-bonus__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.page-promotions-new-user-bonus__faq-item[open] .page-promotions-new-user-bonus__faq-toggle {
    transform: rotate(45deg);
}

.page-promotions-new-user-bonus__faq-answer {
    padding: 20px;
    font-size: 0.95em;
    color: #555555;
    background: #ffffff;
}

/* Final CTA Section */
.page-promotions-new-user-bonus__final-cta-section {
    padding: 80px 20px;
    background: #EA7C07; /* Use Login color for strong CTA */
    color: #ffffff;
    text-align: center;
}

.page-promotions-new-user-bonus__final-cta-section .page-promotions-new-user-bonus__section-title,
.page-promotions-new-user-bonus__final-cta-section .page-promotions-new-user-bonus__section-subtitle {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-promotions-new-user-bonus__hero-section,
    .page-promotions-new-user-bonus__video-section,
    .page-promotions-new-user-bonus__benefits-section,
    .page-promotions-new-user-bonus__how-to-register-section,
    .page-promotions-new-user-bonus__bonus-details-section,
    .page-promotions-new-user-bonus__games-section,
    .page-promotions-new-user-bonus__faq-section,
    .page-promotions-new-user-bonus__final-cta-section {
        padding: 40px 15px !important;
    }

    .page-promotions-new-user-bonus__hero-section {
        padding-top: 10px !important; /* Ensure small top padding */
    }

    .page-promotions-new-user-bonus__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
    }

    .page-promotions-new-user-bonus__section-title {
        font-size: clamp(1.5em, 6vw, 2em);
    }

    .page-promotions-new-user-bonus__description,
    .page-promotions-new-user-bonus__section-subtitle,
    .page-promotions-new-user-bonus__benefit-description,
    .page-promotions-new-user-bonus__step-description,
    .page-promotions-new-user-bonus__bonus-description,
    .page-promotions-new-user-bonus__game-description,
    .page-promotions-new-user-bonus__faq-answer p {
        font-size: 0.9em;
    }

    /* Images responsive */
    .page-promotions-new-user-bonus img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* Video responsive */
    .page-promotions-new-user-bonus video,
    .page-promotions-new-user-bonus__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-promotions-new-user-bonus__video-wrapper,
    .page-promotions-new-user-bonus__video-link-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    /* Buttons responsive */
    .page-promotions-new-user-bonus__cta-buttons {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .page-promotions-new-user-bonus__btn-primary,
    .page-promotions-new-user-bonus__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px !important;
        font-size: 1em !important;
    }

    .page-promotions-new-user-bonus__btn-primary--large,
    .page-promotions-new-user-bonus__btn-secondary--large {
        padding: 15px 25px !important;
        font-size: 1.1em !important;
    }

    .page-promotions-new-user-bonus__benefits-grid,
    .page-promotions-new-user-bonus__steps-grid,
    .page-promotions-new-user-bonus__bonus-grid,
    .page-promotions-new-user-bonus__games-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .page-promotions-new-user-bonus__faq-question {
        font-size: 1em;
        padding: 15px;
    }

    .page-promotions-new-user-bonus__faq-answer {
        padding: 15px;
    }
}