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

/* Base styles for the page content */
.page-promotions-new-user-bonus {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text on light background */
    background-color: var(--secondary-color); /* #FFFFFF */
}

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

.page-promotions-new-user-bonus__section-title {
    font-size: 2.5em;
    color: var(--primary-color); /* #26A9E0 */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.3;
}

.page-promotions-new-user-bonus__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

/* Color Contrast classes */
.page-promotions-new-user-bonus__dark-bg {
    background-color: var(--primary-color); /* #26A9E0 */
    color: #ffffff;
    padding: 60px 0;
}

.page-promotions-new-user-bonus__light-bg {
    background-color: var(--secondary-color); /* #FFFFFF */
    color: #333333;
    padding: 60px 0;
}

/* Hero Section */
.page-promotions-new-user-bonus__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Fixed header spacing */
    background: linear-gradient(135deg, #26A9E0, #a0d8f0); /* Gradient for visual appeal */
}

.page-promotions-new-user-bonus__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.page-promotions-new-user-bonus__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-promotions-new-user-bonus__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-user-bonus__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    color: #ffffff;
}

.page-promotions-new-user-bonus__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: bold;
    line-height: 1.2;
}

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

.page-promotions-new-user-bonus__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #EA7C07; /* Login orange color */
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-promotions-new-user-bonus__cta-button:hover {
    background: #d46e06;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Intro Section */
.page-promotions-new-user-bonus__intro-section .page-promotions-new-user-bonus__section-title {
    color: var(--primary-color);
}
.page-promotions-new-user-bonus__intro-section .page-promotions-new-user-bonus__text-block {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Bonus Types Section */
.page-promotions-new-user-bonus__bonus-types .page-promotions-new-user-bonus__section-title {
    color: #ffffff;
}

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

.page-promotions-new-user-bonus__card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #333333;
    border: 1px solid #e0e0e0;
}

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

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

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

.page-promotions-new-user-bonus__card-description {
    font-size: 1em;
    line-height: 1.7;
    text-align: justify;
}

.page-promotions-new-user-bonus__cta-center {
    text-align: center;
    margin-top: 50px;
}

.page-promotions-new-user-bonus__btn-primary {
    background: var(--primary-color); /* #26A9E0 */
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-promotions-new-user-bonus__btn-primary:hover {
    background: #1e87bb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* How To Claim Section */
.page-promotions-new-user-bonus__how-to-claim .page-promotions-new-user-bonus__section-title {
    color: var(--primary-color);
}
.page-promotions-new-user-bonus__how-to-claim .page-promotions-new-user-bonus__text-block {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.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 {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    border: 1px solid #e0e0e0;
}

.page-promotions-new-user-bonus__step-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    margin: 0 auto 20px auto;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

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

.page-promotions-new-user-bonus__step-description {
    font-size: 1em;
    line-height: 1.7;
    text-align: justify;
}

/* Terms & Conditions Section */
.page-promotions-new-user-bonus__terms-conditions .page-promotions-new-user-bonus__section-title {
    color: #ffffff;
}
.page-promotions-new-user-bonus__terms-conditions .page-promotions-new-user-bonus__text-block {
    color: #f0f0f0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-new-user-bonus__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-new-user-bonus__list-item {
    background: rgba(255, 255, 255, 0.1);
    border-left: 5px solid #EA7C07;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1.05em;
    line-height: 1.8;
}

.page-promotions-new-user-bonus__list-item strong {
    color: #ffffff; /* Ensure strong text is white on dark background */
}

/* Why Choose Section */
.page-promotions-new-user-bonus__why-choose .page-promotions-new-user-bonus__section-title {
    color: var(--primary-color);
}

.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: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid #e0e0e0;
}

.page-promotions-new-user-bonus__feature-item img {
    
    height: auto;
    margin-bottom: 20px;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

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

.page-promotions-new-user-bonus__feature-description {
    font-size: 1em;
    line-height: 1.7;
    text-align: justify;
}

/* FAQ Section */
.page-promotions-new-user-bonus__faq-section .page-promotions-new-user-bonus__section-title {
    color: var(--primary-color);
}

.page-promotions-new-user-bonus__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-new-user-bonus__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-promotions-new-user-bonus__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    padding: 0 15px;
    opacity: 0;
    background: #f9f9f9;
    color: #333333;
    text-align: justify;
}

.page-promotions-new-user-bonus__faq-item.active .page-promotions-new-user-bonus__faq-answer {
    max-height: 2000px !important; /* Use !important and large value for content */
    padding: 20px 15px !important;
    opacity: 1;
    background: #f9f9f9;
    border-radius: 0 0 5px 5px;
}