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

:root {
    --primary-color: #1A2B4C;
    --secondary-color: #FFD700;
    --text-light: #ffffff;
    --text-dark: #333333;
    --background-dark: #000000;
    --card-background-light: #ffffff;
    --card-background-dark: rgba(255, 255, 255, 0.1);
    --border-color: #e0e0e0;
    --spacing-md: 20px;
    --spacing-lg: 40px;
    --spacing-xl: 60px;
}

.page-promotions-new-user-bonus {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-light); /* Default text color for dark body background */
    background-color: var(--background-dark);
}

.page-promotions-new-user-bonus__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    box-sizing: border-box;
}

.page-promotions-new-user-bonus__section-title {
    font-size: 2.5em;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: var(--spacing-lg);
    font-weight: bold;
    line-height: 1.2;
}

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

.page-promotions-new-user-bonus__section-text {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto var(--spacing-lg);
    color: var(--text-light);
}

.page-promotions-new-user-bonus__section-text--light {
    color: var(--text-light);
}

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

/* Hero Section */
.page-promotions-new-user-bonus__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 70vh;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

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

.page-promotions-new-user-bonus__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: var(--spacing-lg);
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
}

.page-promotions-new-user-bonus__hero-title {
    font-size: 3.5em;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
    font-weight: bold;
}

.page-promotions-new-user-bonus__hero-description {
    font-size: 1.3em;
    color: var(--text-light);
    margin-bottom: var(--spacing-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-new-user-bonus__hero-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.page-promotions-new-user-bonus__btn-primary,
.page-promotions-new-user-bonus__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
    box-sizing: border-box;
}

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

.page-promotions-new-user-bonus__btn-primary:hover {
    background-color: darken(var(--secondary-color), 10%);
    transform: translateY(-2px);
}

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

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

/* Intro Section */
.page-promotions-new-user-bonus__intro-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--background-dark);
    color: var(--text-light);
}

/* Video Section */
.page-promotions-new-user-bonus__video-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--primary-color);
}

.page-promotions-new-user-bonus__video-wrapper {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin: var(--spacing-lg) auto;
    background-color: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user-bonus__video-link {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

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

/* How To Claim Section */
.page-promotions-new-user-bonus__how-to-claim-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--background-dark);
    color: var(--text-light);
}

.page-promotions-new-user-bonus__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.page-promotions-new-user-bonus__step-card {
    background-color: var(--card-background-dark);
    padding: var(--spacing-md);
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-light);
}

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

.page-promotions-new-user-bonus__step-description {
    font-size: 1em;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}

.page-promotions-new-user-bonus__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: auto;
}

.page-promotions-new-user-bonus__cta-center {
    text-align: center;
    margin-top: var(--spacing-xl);
}

/* Bonus Types Section */
.page-promotions-new-user-bonus__bonus-types-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-promotions-new-user-bonus__cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.page-promotions-new-user-bonus__bonus-card {
    background-color: var(--card-background-dark);
    padding: var(--spacing-md);
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    color: var(--text-light);
}

.page-promotions-new-user-bonus__bonus-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: var(--spacing-md);
}

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

.page-promotions-new-user-bonus__bonus-description {
    font-size: 1em;
    color: var(--text-light);
}

/* Terms Section */
.page-promotions-new-user-bonus__terms-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--background-dark);
    color: var(--text-light);
}

.page-promotions-new-user-bonus__terms-list {
    list-style: none;
    padding: 0;
    margin: var(--spacing-lg) auto;
    max-width: 900px;
    text-align: left;
}

.page-promotions-new-user-bonus__terms-item {
    background-color: var(--card-background-dark);
    margin-bottom: 10px;
    padding: var(--spacing-md);
    border-radius: 8px;
    font-size: 1.1em;
    color: var(--text-light);
}

.page-promotions-new-user-bonus__terms-item strong {
    color: var(--secondary-color);
}

.page-promotions-new-user-bonus__terms-section .page-promotions-new-user-bonus__section-text a {
    color: var(--secondary-color);
    text-decoration: none;
}

.page-promotions-new-user-bonus__terms-section .page-promotions-new-user-bonus__section-text a:hover {
    text-decoration: underline;
}

/* Why Choose Section */
.page-promotions-new-user-bonus__why-choose-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--primary-color);
    color: var(--text-light);
}

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

.page-promotions-new-user-bonus__feature-card {
    background-color: var(--card-background-dark);
    padding: var(--spacing-md);
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    color: var(--text-light);
}

.page-promotions-new-user-bonus__feature-icon {
    max-width: 100%;
    height: auto;
    margin-bottom: var(--spacing-md);
}

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

.page-promotions-new-user-bonus__feature-description {
    font-size: 1em;
    color: var(--text-light);
}

/* FAQ Section */
.page-promotions-new-user-bonus__faq-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--background-dark);
    color: var(--text-light);
}

.page-promotions-new-user-bonus__faq-list {
    max-width: 900px;
    margin: var(--spacing-lg) auto;
}

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

.page-promotions-new-user-bonus__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md);
    font-size: 1.2em;
    font-weight: bold;
    color: var(--secondary-color);
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-promotions-new-user-bonus__faq-question h3 {
    margin: 0;
    color: inherit;
    font-size: 1.2em;
}

.page-promotions-new-user-bonus__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    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 var(--spacing-md);
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-light);
}

.page-promotions-new-user-bonus__faq-item.active .page-promotions-new-user-bonus__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to contain content */
    padding: var(--spacing-md);
}

.page-promotions-new-user-bonus__faq-answer p {
    margin: 0;
    padding-top: 10px;
    text-align: left;
}

/* CTA Section */
.page-promotions-new-user-bonus__cta-section {
    padding: var(--spacing-xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-new-user-bonus__cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.4);
}

.page-promotions-new-user-bonus__cta-section .page-promotions-new-user-bonus__container {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    padding: var(--spacing-lg);
}

.page-promotions-new-user-bonus__btn-primary--large {
    font-size: 1.3em;
    padding: 18px 35px;
    margin-top: var(--spacing-lg);
}

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

@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: 60vh;
        padding-top: var(--header-offset, 120px) !important; /* Ensure mobile offset */
    }
    .page-promotions-new-user-bonus__hero-title {
        font-size: 2.5em;
    }
    .page-promotions-new-user-bonus__hero-description {
        font-size: 1.1em;
    }
    .page-promotions-new-user-bonus__hero-cta {
        flex-direction: column;
    }
    .page-promotions-new-user-bonus__btn-primary,
    .page-promotions-new-user-bonus__btn-secondary {
        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__hero-cta, 
    .page-promotions-new-user-bonus__cta-center, 
    .page-promotions-new-user-bonus__cta-section .page-promotions-new-user-bonus__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
        flex-wrap: wrap !important;
        gap: 10px;
    }
    .page-promotions-new-user-bonus__section-title {
        font-size: 1.8em;
    }
    .page-promotions-new-user-bonus__section-text {
        font-size: 1em;
    }
    .page-promotions-new-user-bonus__steps-grid,
    .page-promotions-new-user-bonus__cards-grid,
    .page-promotions-new-user-bonus__features-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-new-user-bonus__faq-question h3 {
        font-size: 1em;
    }
    .page-promotions-new-user-bonus img {
        max-width: 100% !important;
        height: auto !important;
        display: block !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__video-section,
    .page-promotions-new-user-bonus__video-container,
    .page-promotions-new-user-bonus__video-wrapper,
    .page-promotions-new-user-bonus__section,
    .page-promotions-new-user-bonus__card,
    .page-promotions-new-user-bonus__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-promotions-new-user-bonus__video-section {
        padding-top: var(--header-offset, 120px) !important;
    }
}

@media (max-width: 480px) {
    .page-promotions-new-user-bonus__hero-title {
        font-size: 2em;
    }
    .page-promotions-new-user-bonus__hero-description {
        font-size: 0.9em;
    }
    .page-promotions-new-user-bonus__btn-primary--large {
        font-size: 1.1em;
        padding: 15px 25px;
    }
}