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

:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --login-button-color: #EA7C07;
    --text-dark: #333333;
    --text-light: #ffffff;
    --background-light: #FFFFFF;
    --background-dark: #000000;
}

.page-promotions-new-user-bonus {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-light); /* Body background is dark #000000, so default text is light */
}

.page-promotions-new-user-bonus__hero-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    background-color: var(--background-dark);
}

.page-promotions-new-user-bonus__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-promotions-new-user-bonus__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
    z-index: 2;
}

.page-promotions-new-user-bonus__hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 20px;
    color: var(--text-light);
}

.page-promotions-new-user-bonus__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-new-user-bonus__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.page-promotions-new-user-bonus__hero-link {
    color: var(--primary-color);
    text-decoration: underline;
}

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

.page-promotions-new-user-bonus__btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
}

.page-promotions-new-user-bonus__btn-primary:hover {
    background-color: darken(var(--primary-color), 10%);
    border-color: darken(var(--primary-color), 10%);
}

.page-promotions-new-user-bonus__btn-secondary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-promotions-new-user-bonus__btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

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

.page-promotions-new-user-bonus__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.page-promotions-new-user-bonus__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: var(--text-dark);
}

.page-promotions-new-user-bonus__light-bg {
    background-color: var(--background-light);
    color: var(--text-dark);
}

.page-promotions-new-user-bonus__dark-bg {
    background-color: var(--background-dark);
    color: var(--text-light);
}

.page-promotions-new-user-bonus__promotion-details-section .page-promotions-new-user-bonus__section-title,
.page-promotions-new-user-bonus__promotion-details-section .page-promotions-new-user-bonus__section-intro {
    color: var(--text-dark);
}

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

.page-promotions-new-user-bonus__card {
    background-color: var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 450px; /* Ensure cards have similar height */
}

.page-promotions-new-user-bonus__card-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-promotions-new-user-bonus__card-title {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

.page-promotions-new-user-bonus__card-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: left;
    flex-grow: 1;
}

.page-promotions-new-user-bonus__card-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.page-promotions-new-user-bonus__card-list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.page-promotions-new-user-bonus__list-highlight {
    color: var(--primary-color);
}

.page-promotions-new-user-bonus__how-to-claim-section .page-promotions-new-user-bonus__section-title,
.page-promotions-new-user-bonus__how-to-claim-section .page-promotions-new-user-bonus__section-intro {
    color: var(--text-light);
}

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

.page-promotions-new-user-bonus__step-item {
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-light);
}

.page-promotions-new-user-bonus__step-icon {
    font-size: 2.5em;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
}

.page-promotions-new-user-bonus__step-title {
    font-size: 1.3em;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.page-promotions-new-user-bonus__step-text {
    font-size: 0.95em;
}

.page-promotions-new-user-bonus__text-link {
    color: var(--primary-color);
    text-decoration: underline;
}

.page-promotions-new-user-bonus__why-choose-us-section .page-promotions-new-user-bonus__section-title,
.page-promotions-new-user-bonus__why-choose-us-section .page-promotions-new-user-bonus__section-intro {
    color: var(--text-dark);
}

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

.page-promotions-new-user-bonus__feature-item {
    background-color: var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    color: var(--text-dark);
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.page-promotions-new-user-bonus__feature-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-promotions-new-user-bonus__feature-title {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-promotions-new-user-bonus__feature-text {
    font-size: 0.95em;
    flex-grow: 1;
}

.page-promotions-new-user-bonus__terms-section .page-promotions-new-user-bonus__section-title,
.page-promotions-new-user-bonus__terms-section .page-promotions-new-user-bonus__section-intro {
    color: var(--text-light);
}

.page-promotions-new-user-bonus__terms-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 40px auto;
    color: var(--text-light);
}

.page-promotions-new-user-bonus__terms-list li {
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
    padding: 15px 20px;
    border-radius: 8px;
    position: relative;
    padding-left: 40px;
}

.page-promotions-new-user-bonus__terms-list li::before {
    content: '➡️';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.page-promotions-new-user-bonus__terms-note {
    text-align: center;
    font-style: italic;
    color: var(--text-light);
    margin-top: 30px;
}

.page-promotions-new-user-bonus__faq-section .page-promotions-new-user-bonus__section-title,
.page-promotions-new-user-bonus__faq-section .page-promotions-new-user-bonus__section-intro {
    color: var(--text-dark);
}

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

.page-promotions-new-user-bonus__faq-item {
    background-color: var(--secondary-color);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    color: var(--text-dark);
}

.page-promotions-new-user-bonus__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
}

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

.page-promotions-new-user-bonus__faq-title {
    font-size: 1.1em;
    color: var(--primary-color);
    margin: 0;
}

.page-promotions-new-user-bonus__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

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

.page-promotions-new-user-bonus__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    background-color: var(--secondary-color);
}

.page-promotions-new-user-bonus__faq-item.active .page-promotions-new-user-bonus__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show all content */
    padding: 15px 25px;
}

.page-promotions-new-user-bonus__answer-text {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.page-promotions-new-user-bonus__cta-section {
    padding: 60px 20px;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--text-light);
}

.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-intro {
    color: var(--text-light);
}

.page-promotions-new-user-bonus__video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 40px auto;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    box-sizing: border-box;
}

.page-promotions-new-user-bonus__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

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

.page-promotions-new-user-bonus__video-caption {
    text-align: center;
    color: var(--text-light);
    margin-top: 15px;
    font-size: 0.9em;
}

/* Global image settings for content area to prevent small icons */
.page-promotions-new-user-bonus img {
    min-width: 200px;
    min-height: 200px;
}

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

@media (max-width: 768px) {
    .page-promotions-new-user-bonus {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-promotions-new-user-bonus__hero-section {
        min-height: 450px;
        padding-top: var(--header-offset, 120px) !important; /* Ensure content is below fixed header on mobile */
    }

    .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__cta-button,
    .page-promotions-new-user-bonus__btn-primary,
    .page-promotions-new-user-bonus__btn-secondary,
    .page-promotions-new-user-bonus a[class*="button"],
    .page-promotions-new-user-bonus a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-promotions-new-user-bonus__section-title {
        font-size: 2em;
    }

    .page-promotions-new-user-bonus__section-intro {
        font-size: 1em;
    }

    .page-promotions-new-user-bonus__card {
        padding: 20px;
        min-height: auto;
    }

    .page-promotions-new-user-bonus__promo-grid,
    .page-promotions-new-user-bonus__steps-grid,
    .page-promotions-new-user-bonus__features-grid {
        grid-template-columns: 1fr;
    }

    .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;
        padding: 0 15px; /* Add horizontal padding for content safety */
        overflow: hidden !important;
    }

    .page-promotions-new-user-bonus__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-promotions-new-user-bonus__container {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* All images in content area */
    .page-promotions-new-user-bonus img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-promotions-new-user-bonus__faq-question {
        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__cta-button {
        padding: 12px 20px;
        font-size: 1em;
    }
}