/* style/promotions-new-user-bonus.css */
.page-promotions-new-user-bonus {
    font-family: 'Arial', sans-serif;
    color: #333333; /* Dark gray for readability on light backgrounds */
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

.page-promotions-new-user-bonus__hero-section {
    background: linear-gradient(135deg, #003366 0%, #004d99 100%); /* Deep blue gradient */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-new-user-bonus__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,blue_gold_pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-promotions-new-user-bonus__hero-section > div {
    position: relative;
    z-index: 1;
}

.page-promotions-new-user-bonus__main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFCC00; /* Gold for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: bold;
}

.page-promotions-new-user-bonus__subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-promotions-new-user-bonus__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-promotions-new-user-bonus__btn--primary {
    background-color: #FFCC00; /* Gold */
    color: #003366; /* Deep blue text */
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
}

.page-promotions-new-user-bonus__btn--primary:hover {
    background-color: #e6b800; /* Darker gold */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.6);
}

.page-promotions-new-user-bonus__btn--secondary {
    background-color: #003366; /* Deep blue */
    color: #FFCC00; /* Gold text */
    border: 2px solid #FFCC00;
    margin-left: 20px;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.4);
}

.page-promotions-new-user-bonus__btn--secondary:hover {
    background-color: #004080; /* Lighter deep blue */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 51, 102, 0.6);
}

.page-promotions-new-user-bonus__btn--link {
    background: none;
    color: #003366;
    padding: 10px 0;
    border-bottom: 2px solid #FFCC00;
    border-radius: 0;
    font-size: 1em;
    margin-top: 15px;
}

.page-promotions-new-user-bonus__btn--link:hover {
    color: #FFCC00;
    border-color: #003366;
}

.page-promotions-new-user-bonus__content-section {
    padding: 60px 0;
    text-align: center;
}

.page-promotions-new-user-bonus__content-section:nth-of-type(even) {
    background-color: #f0f0f0;
}

.page-promotions-new-user-bonus__section-title {
    font-size: 2.5em;
    color: #003366; /* Deep blue */
    margin-bottom: 40px;
    font-weight: bold;
    position: relative;
    padding-bottom: 15px;
}

.page-promotions-new-user-bonus__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFCC00; /* Gold underline */
    border-radius: 2px;
}

.page-promotions-new-user-bonus__flex-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.page-promotions-new-user-bonus__grid-item,
.page-promotions-new-user-bonus__reason-item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 30px;
    flex: 1 1 calc(33% - 40px);
    max-width: calc(33% - 40px);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-new-user-bonus__grid-item:hover,
.page-promotions-new-user-bonus__reason-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-promotions-new-user-bonus__icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 10px rgba(0, 51, 102, 0.2));
}

.page-promotions-new-user-bonus__item-title {
    font-size: 1.5em;
    color: #003366; /* Deep blue */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-new-user-bonus__grid-item p,
.page-promotions-new-user-bonus__reason-item p {
    color: #555555;
    font-size: 1em;
}

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

.page-promotions-new-user-bonus__step-item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: left;
    position: relative;
    padding-top: 60px;
}

.page-promotions-new-user-bonus__step-number {
    background-color: #FFCC00; /* Gold */
    color: #003366; /* Deep blue */
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    position: absolute;
    top: -22.5px;
    left: 50%;
    transform: translateX(-50%);
    border: 3px solid #003366;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-user-bonus__step-title {
    font-size: 1.4em;
    color: #003366; /* Deep blue */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-new-user-bonus__step-item p {
    color: #555555;
    font-size: 0.95em;
}

.page-promotions-new-user-bonus__terms-conditions {
    background-color: #003366;
    color: #ffffff;
    padding: 80px 0;
}

.page-promotions-new-user-bonus__terms-conditions .page-promotions-new-user-bonus__section-title {
    color: #FFCC00; /* Gold */
}

.page-promotions-new-user-bonus__terms-conditions p {
    max-width: 900px;
    margin: 0 auto 30px auto;
    font-size: 1.1em;
    color: #e0e0e0;
}

.page-promotions-new-user-bonus__list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto 40px auto;
    text-align: left;
}

.page-promotions-new-user-bonus__list li {
    background-color: rgba(255, 255, 255, 0.1);
    border-left: 5px solid #FFCC00; /* Gold accent */
    margin-bottom: 15px;
    padding: 15px 20px;
    border-radius: 5px;
    font-size: 1em;
    color: #ffffff;
}

.page-promotions-new-user-bonus__faq {
    background-color: #f8f8f8;
}

.page-promotions-new-user-bonus__accordion {
    max-width: 900px;
    margin: 40px auto;
    text-align: left;
}

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

.page-promotions-new-user-bonus__accordion-header {
    width: 100%;
    background-color: #003366; /* Deep blue */
    color: #ffffff;
    padding: 18px 25px;
    text-align: left;
    font-size: 1.15em;
    font-weight: bold;
    border: none;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-promotions-new-user-bonus__accordion-header:hover {
    background-color: #004080; /* Lighter deep blue */
}

.page-promotions-new-user-bonus__accordion-header::after {
    content: '\002B'; /* Plus sign */
    font-size: 1.5em;
    font-weight: bold;
    color: #FFCC00;
}

.page-promotions-new-user-bonus__accordion-header.active::after {
    content: '\2212'; /* Minus sign */
}

.page-promotions-new-user-bonus__accordion-content {
    padding: 0 25px;
    background-color: #fefefe;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promotions-new-user-bonus__accordion-content p {
    padding: 15px 0;
    margin: 0;
    color: #555555;
}

.page-promotions-new-user-bonus__accordion-content.active {
    max-height: 200px; /* Adjust as needed for content height */
    padding: 15px 25px;
}

.page-promotions-new-user-bonus__cta-final {
    background-color: #003366;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

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

.page-promotions-new-user-bonus__cta-final .page-promotions-new-user-bonus__subtitle {
    color: #e0e0e0;
    margin-bottom: 50px;
}

.page-promotions-new-user-bonus__cta-final .page-promotions-new-user-bonus__btn--secondary {
    background-color: #FFCC00;
    color: #003366;
    border: 2px solid #FFCC00;
    margin-left: 20px;
}

.page-promotions-new-user-bonus__cta-final .page-promotions-new-user-bonus__btn--secondary:hover {
    background-color: #e6b800;
    border-color: #e6b800;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-new-user-bonus__main-title {
        font-size: 2.8em;
    }
    .page-promotions-new-user-bonus__subtitle {
        font-size: 1.2em;
    }
    .page-promotions-new-user-bonus__section-title {
        font-size: 2em;
    }
    .page-promotions-new-user-bonus__flex-grid {
        flex-direction: column;
        align-items: center;
    }
    .page-promotions-new-user-bonus__grid-item,
    .page-promotions-new-user-bonus__reason-item {
        max-width: 80%;
        flex: 1 1 80%;
    }
    .page-promotions-new-user-bonus__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    .page-promotions-new-user-bonus__hero-section .page-promotions-new-user-bonus__btn {
        margin: 10px;
    }
}

@media (max-width: 768px) {
    .page-promotions-new-user-bonus__hero-section {
        padding: 80px 0;
    }
    .page-promotions-new-user-bonus__main-title {
        font-size: 2.2em;
    }
    .page-promotions-new-user-bonus__subtitle {
        font-size: 1em;
    }
    .page-promotions-new-user-bonus__section-title {
        font-size: 1.8em;
    }
    .page-promotions-new-user-bonus__grid-item,
    .page-promotions-new-user-bonus__reason-item {
        max-width: 95%;
        flex: 1 1 95%;
    }
    .page-promotions-new-user-bonus__steps-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-new-user-bonus__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-new-user-bonus__btn--secondary {
        margin-top: 15px;
    }
    .page-promotions-new-user-bonus__cta-final .page-promotions-new-user-bonus__btn {
        margin: 10px 0;
        display: block;
    }
    .page-promotions-new-user-bonus__cta-final .page-promotions-new-user-bonus__btn--secondary {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .page-promotions-new-user-bonus__hero-section {
        padding: 60px 0;
    }
    .page-promotions-new-user-bonus__main-title {
        font-size: 1.8em;
    }
    .page-promotions-new-user-bonus__subtitle {
        font-size: 0.9em;
    }
    .page-promotions-new-user-bonus__section-title {
        font-size: 1.5em;
    }
    .page-promotions-new-user-bonus__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-promotions-new-user-bonus__accordion-header {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-promotions-new-user-bonus__accordion-content p {
        padding: 10px 0;
    }
    .page-promotions-new-user-bonus__accordion-content.active {
        padding: 10px 20px;
    }
}