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

:root {
    --primary-color: #F2C14E;
    --secondary-color: #FFD36B;
    --background-color: #0A0A0A;
    --card-background: #111111;
    --text-main-color: #FFF6D6;
    --border-color: #3A2A12;
    --glow-color: #FFD36B;
    --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
}

.page-promotions-new-user-bonus {
    background-color: var(--background-color);
    color: var(--text-main-color);
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.page-promotions-new-user-bonus__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0 60px 0; /* body handles header offset, this is for visual spacing */
    background-color: var(--background-color);
}

.page-promotions-new-user-bonus__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

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

.page-promotions-new-user-bonus__hero-content {
    max-width: 900px;
    text-align: center;
    padding: 20px;
    margin-top: -80px; /* Overlap slightly for design */
    position: relative;
    z-index: 1;
    background-color: rgba(17, 17, 17, 0.8); /* Semi-transparent background for text readability */
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
}

.page-promotions-new-user-bonus__main-title {
    color: var(--text-main-color);
    font-size: clamp(2.2rem, 4vw, 3rem); /* Use clamp for responsive H1 */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 0 0 10px var(--glow-color);
}

.page-promotions-new-user-bonus__hero-description {
    color: var(--text-main-color);
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 30px;
}

.page-promotions-new-user-bonus__cta-button {
    display: inline-block;
    background: var(--button-gradient);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: none;
}

.page-promotions-new-user-bonus__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    opacity: 0.9;
}

.page-promotions-new-user-bonus__cta-button--center {
    display: block;
    margin: 30px auto 0 auto;
    max-width: 300px;
}

.page-promotions-new-user-bonus__content-section {
    padding: 60px 0;
    background-color: var(--background-color);
    color: var(--text-main-color);
}

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

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

.page-promotions-new-user-bonus__section-title {
    color: var(--primary-color);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.5);
}

.page-promotions-new-user-bonus__text-block {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-main-color);
    text-align: justify;
}

.page-promotions-new-user-bonus__highlight {
    color: var(--secondary-color);
    font-weight: 600;
}

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

.page-promotions-new-user-bonus__step-item {
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-promotions-new-user-bonus__step-item:hover {
    transform: translateY(-5px);
}

.page-promotions-new-user-bonus__step-title {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

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

.page-promotions-new-user-bonus__promo-card {
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-promotions-new-user-bonus__promo-card:hover {
    transform: translateY(-5px);
}

.page-promotions-new-user-bonus__promo-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
}

.page-promotions-new-user-bonus__promo-title {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-promotions-new-user-bonus__promo-description {
    font-size: 1rem;
    margin-bottom: 15px;
    flex-grow: 1;
}

.page-promotions-new-user-bonus__promo-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
}

.page-promotions-new-user-bonus__promo-features li {
    color: var(--text-main-color);
    font-size: 0.95rem;
    margin-bottom: 5px;
    position: relative;
    padding-left: 20px;
}

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

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

.page-promotions-new-user-bonus__terms-card {
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-user-bonus__terms-title {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-promotions-new-user-bonus__content-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    min-width: 200px;
    min-height: 200px;
}

.page-promotions-new-user-bonus__tips-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

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

.page-promotions-new-user-bonus__tips-list li:hover {
    background-color: rgba(17, 17, 17, 0.8);
}

.page-promotions-new-user-bonus__tip-title {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-promotions-new-user-bonus__tip-title + p {
    font-size: 1rem;
    color: var(--text-main-color);
}

.page-promotions-new-user-bonus__faq-section {
    padding: 60px 0;
    background-color: var(--card-background);
}

.page-promotions-new-user-bonus__faq-list {
    margin-top: 40px;
}

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

.page-promotions-new-user-bonus__faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-color);
    background-color: var(--card-background);
    transition: background-color 0.3s ease;
    list-style: none;
}

.page-promotions-new-user-bonus__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-promotions-new-user-bonus__faq-item summary:hover {
    background-color: rgba(17, 17, 17, 0.8);
}

.page-promotions-new-user-bonus__faq-qtext {
    flex-grow: 1;
}

.page-promotions-new-user-bonus__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
}

.page-promotions-new-user-bonus__faq-answer {
    padding: 15px 20px 20px 20px;
    font-size: 1rem;
    color: var(--text-main-color);
    border-top: 1px solid var(--border-color);
}

.page-promotions-new-user-bonus__conclusion-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--background-color);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-promotions-new-user-bonus__hero-content {
        margin-top: -60px;
    }
}

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

    .page-promotions-new-user-bonus__hero-section {
        padding: 10px 0 40px 0;
    }

    .page-promotions-new-user-bonus__hero-content {
        margin-top: -40px;
        padding: 15px;
    }

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

    .page-promotions-new-user-bonus__hero-description {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    }

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

    .page-promotions-new-user-bonus__container {
        padding: 0 15px !important;
    }

    .page-promotions-new-user-bonus__text-block {
        font-size: 1rem;
    }

    .page-promotions-new-user-bonus__steps-list,
    .page-promotions-new-user-bonus__promo-grid,
    .page-promotions-new-user-bonus__terms-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-promotions-new-user-bonus__promo-image {
        height: 180px;
    }

    .page-promotions-new-user-bonus__cta-button,
    .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__cta-buttons,
    .page-promotions-new-user-bonus__button-group,
    .page-promotions-new-user-bonus__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }
    
    .page-promotions-new-user-bonus__cta-buttons {
        display: flex;
        flex-direction: column;
    }

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

    .page-promotions-new-user-bonus__section,
    .page-promotions-new-user-bonus__card,
    .page-promotions-new-user-bonus__container,
    .page-promotions-new-user-bonus__hero-image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-promotions-new-user-bonus__hero-image-wrapper,
    .page-promotions-new-user-bonus__content-image {
        padding: 0;
    }

    .page-promotions-new-user-bonus__faq-item summary {
        font-size: 1rem;
        padding: 15px;
    }

    .page-promotions-new-user-bonus__faq-answer {
        font-size: 0.95rem;
        padding: 10px 15px 15px 15px;
    }
}

@media (max-width: 480px) {
    .page-promotions-new-user-bonus__hero-content {
        margin-top: -20px;
    }

    .page-promotions-new-user-bonus__cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .page-promotions-new-user-bonus__step-item,
    .page-promotions-new-user-bonus__promo-card,
    .page-promotions-new-user-bonus__terms-card,
    .page-promotions-new-user-bonus__tips-list li {
        padding: 20px;
    }

    .page-promotions-new-user-bonus__step-title,
    .page-promotions-new-user-bonus__promo-title,
    .page-promotions-new-user-bonus__terms-title {
        font-size: 1.2rem;
    }
}