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

/* Base styles for the page content */
.page-promotions-new-user-bonus {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: #0a0a0a; /* Ensure consistency with body background */
}

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

/* Section styles */
.page-promotions-new-user-bonus__hero-section,
.page-promotions-new-user-bonus__bonus-details-section,
.page-promotions-new-user-bonus__terms-section,
.page-promotions-new-user-bonus__guide-section,
.page-promotions-new-user-bonus__why-choose-section,
.page-promotions-new-user-bonus__faq-section,
.page-promotions-new-user-bonus__cta-final-section {
    padding: 80px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-promotions-new-user-bonus__hero-section {
    padding-top: calc(80px + var(--header-offset, 120px)); /* Account for fixed header */
    background: linear-gradient(135deg, #007BFF, #0056b3);
    color: #ffffff;
    overflow: hidden;
}

.page-promotions-new-user-bonus__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.page-promotions-new-user-bonus__section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #007BFF;
}

.page-promotions-new-user-bonus__section-intro {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

/* Color themes for sections */
.page-promotions-new-user-bonus__dark-bg {
    background-color: #0d0d0d; /* Slightly lighter than body for contrast */
    color: #ffffff;
}

.page-promotions-new-user-bonus__light-bg {
    background-color: #f8f9fa; /* Light background for contrast */
    color: #333333;
}

.page-promotions-new-user-bonus__light-bg .page-promotions-new-user-bonus__section-title {
    color: #007BFF;
}

.page-promotions-new-user-bonus__dark-bg .page-promotions-new-user-bonus__section-title {
    color: #FFC107;
}

/* Buttons */
.page-promotions-new-user-bonus__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-promotions-new-user-bonus__btn-primary {
    background-color: #FFC107;
    color: #000000; /* Ensure contrast with #FFC107 */
    border: 2px solid #FFC107;
}

.page-promotions-new-user-bonus__btn-primary:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
}

.page-promotions-new-user-bonus__btn-secondary {
    background-color: transparent;
    color: #FFC107;
    border: 2px solid #FFC107;
}

.page-promotions-new-user-bonus__btn-secondary:hover {
    background-color: #FFC107;
    color: #000000;
    transform: translateY(-3px);
}

.page-promotions-new-user-bonus__btn-link {
    display: inline-block;
    margin-top: 15px;
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-promotions-new-user-bonus__btn-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Card styles */
.page-promotions-new-user-bonus__card {
    background-color: #ffffff; /* Light background for card content */
    color: #333333;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Ensure cards have equal height in grid */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-promotions-new-user-bonus__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions-new-user-bonus__card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-promotions-new-user-bonus__card-title {
    font-size: 1.5em;
    font-weight: bold;
    color: #007BFF;
    margin-bottom: 15px;
}

.page-promotions-new-user-bonus__card-text {
    font-size: 1em;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Details Grid */
.page-promotions-new-user-bonus__details-grid,
.page-promotions-new-user-bonus__steps-grid,
.page-promotions-new-user-bonus__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-promotions-new-user-bonus__cta-wrapper {
    margin-top: 50px;
}

/* Terms List */
.page-promotions-new-user-bonus__terms-list {
    list-style: none;
    padding: 0;
    margin-top: 50px;
    text-align: left;
}

.page-promotions-new-user-bonus__terms-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-user-bonus__terms-heading {
    font-size: 1.4em;
    font-weight: bold;
    color: #FFC107;
    margin-bottom: 10px;
}

.page-promotions-new-user-bonus__terms-text {
    font-size: 1em;
    line-height: 1.7;
    color: #e0e0e0;
}

/* Steps Card */
.page-promotions-new-user-bonus__step-card {
    text-align: center;
    position: relative;
    padding-top: 60px; /* Space for step number */
}

.page-promotions-new-user-bonus__step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #007BFF;
    color: #ffffff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Features section */
.page-promotions-new-user-bonus__feature-item {
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: background-color 0.3s ease;
}

.page-promotions-new-user-bonus__feature-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-promotions-new-user-bonus__feature-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-promotions-new-user-bonus__feature-title {
    font-size: 1.4em;
    font-weight: bold;
    color: #FFC107;
    margin-bottom: 10px;
}

.page-promotions-new-user-bonus__feature-text {
    font-size: 0.95em;
    color: #e0e0e0;
}

/* FAQ Section */
.page-promotions-new-user-bonus__faq-list {
    max-width: 900px;
    margin: 50px auto 0;
    text-align: left;
}

.page-promotions-new-user-bonus__faq-item {
    background-color: #ffffff;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    color: #333333;
}

.page-promotions-new-user-bonus__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1em;
    background-color: #f0f0f0;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s ease;
}

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

.page-promotions-new-user-bonus__faq-heading {
    margin: 0;
    color: #007BFF;
}

.page-promotions-new-user-bonus__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
    color: #007BFF;
}

.page-promotions-new-user-bonus__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #ffffff;
    color: #555555;
}

.page-promotions-new-user-bonus__faq-answer p {
    padding-bottom: 15px;
    margin: 0;
}

.page-promotions-new-user-bonus__faq-item.active .page-promotions-new-user-bonus__faq-answer {
    max-height: 1000px !important; /* Sufficient height for content */
    padding: 15px 25px;
}

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

/* Final CTA Section */
.page-promotions-new-user-bonus__cta-final-section {
    background: linear-gradient(135deg, #0056b3, #007BFF);
    color: #ffffff;
}

.page-promotions-new-user-bonus__cta-final-section .page-promotions-new-user-bonus__section-title {
    color: #FFC107;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions-new-user-bonus__hero-title {
        font-size: 2.8em;
    }
    .page-promotions-new-user-bonus__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-promotions-new-user-bonus__hero-section {
        padding-top: calc(60px + var(--header-offset, 120px)) !important;
        padding-bottom: 60px;
    }
    .page-promotions-new-user-bonus__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-new-user-bonus__hero-description {
        font-size: 1em;
    }
    .page-promotions-new-user-bonus__section-title {
        font-size: 1.8em;
    }
    .page-promotions-new-user-bonus__section-intro {
        font-size: 0.95em;
    }
    .page-promotions-new-user-bonus__cta-button {
        padding: 12px 25px;
        font-size: 1em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-promotions-new-user-bonus__details-grid,
    .page-promotions-new-user-bonus__steps-grid,
    .page-promotions-new-user-bonus__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-promotions-new-user-bonus__container {
        padding: 0 15px !important;
    }
    .page-promotions-new-user-bonus__card-image,
    .page-promotions-new-user-bonus__feature-icon,
    .page-promotions-new-user-bonus img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }
    .page-promotions-new-user-bonus__section,
    .page-promotions-new-user-bonus__card,
    .page-promotions-new-user-bonus__container,
    .page-promotions-new-user-bonus__cta-buttons,
    .page-promotions-new-user-bonus__button-group,
    .page-promotions-new-user-bonus__btn-container,
    .page-promotions-new-user-bonus__video-section,
    .page-promotions-new-user-bonus__video-container,
    .page-promotions-new-user-bonus__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-promotions-new-user-bonus__cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .page-promotions-new-user-bonus__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-promotions-new-user-bonus__faq-answer {
        padding: 0 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__section-title {
        font-size: 1.5em;
    }
    .page-promotions-new-user-bonus__cta-button {
        font-size: 0.9em;
    }
}