/* style/promotions-new-user-bonus-details.css */
.page-promotions-new-user-bonus-details {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text */
    background-color: #1A1A2E; /* Main dark background */
    line-height: 1.6;
}

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

.page-promotions-new-user-bonus-details__hero {
    background: linear-gradient(135deg, #1A1A2E 0%, #3a3a5a 100%); /* Dark blue-purple gradient */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.page-promotions-new-user-bonus-details__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: 0;
}

.page-promotions-new-user-bonus-details__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(80%) brightness(50%);
}

.page-promotions-new-user-bonus-details__hero .page-promotions-new-user-bonus-details__container {
    position: relative;
    z-index: 1;
}

.page-promotions-new-user-bonus-details__title {
    font-size: 3.5em;
    color: #E0B34E; /* Auxiliary gold for highlights */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
    line-height: 1.2;
}

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

.page-promotions-new-user-bonus-details__cta-button {
    display: inline-block;
    background-color: #E0B34E; /* Auxiliary gold for CTA */
    color: #1A1A2E; /* Dark text on gold */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-promotions-new-user-bonus-details__cta-button:hover {
    background-color: #f0c35e; /* Lighter gold on hover */
    transform: translateY(-3px);
}

.page-promotions-new-user-bonus-details__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(224, 179, 78, 0.1);
}

.page-promotions-new-user-bonus-details__section:last-of-type {
    border-bottom: none;
}

.page-promotions-new-user-bonus-details__section-title {
    font-size: 2.5em;
    color: #E0B34E;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-promotions-new-user-bonus-details__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: #B0B0B0;
}

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

.page-promotions-new-user-bonus-details__grid-item {
    background-color: #2A2A4A; /* Slightly lighter dark blue-purple */
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-promotions-new-user-bonus-details__grid-item:hover {
    transform: translateY(-5px);
    background-color: #3A3A5A;
}

.page-promotions-new-user-bonus-details__icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #E0B34E);
}

.page-promotions-new-user-bonus-details__item-title {
    font-size: 1.6em;
    color: #E0B34E;
    margin-bottom: 15px;
}

.page-promotions-new-user-bonus-details__item-description {
    font-size: 1em;
    color: #C0C0C0;
}

.page-promotions-new-user-bonus-details__how-to-claim {
    background-color: #1A1A2E;
}

.page-promotions-new-user-bonus-details__steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.page-promotions-new-user-bonus-details__steps-list li {
    display: flex;
    align-items: flex-start;
    background-color: #2A2A4A;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-user-bonus-details__step-number {
    background-color: #E0B34E;
    color: #1A1A2E;
    font-size: 1.8em;
    font-weight: bold;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 20px;
    box-shadow: 0 0 10px rgba(224, 179, 78, 0.5);
}

.page-promotions-new-user-bonus-details__step-title {
    font-size: 1.5em;
    color: #E0B34E;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-promotions-new-user-bonus-details__step-description {
    font-size: 1.05em;
    color: #C0C0C0;
}

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

.page-promotions-new-user-bonus-details__cta-button--secondary {
    background-color: transparent;
    border: 2px solid #E0B34E;
    color: #E0B34E;
}

.page-promotions-new-user-bonus-details__cta-button--secondary:hover {
    background-color: #E0B34E;
    color: #1A1A2E;
    transform: translateY(-3px);
}

.page-promotions-new-user-bonus-details__terms-conditions {
    background-color: #2A2A4A;
}

.page-promotions-new-user-bonus-details__list {
    list-style: disc;
    padding-left: 40px;
    margin: 0 auto;
    max-width: 900px;
    color: #C0C0C0;
}

.page-promotions-new-user-bonus-details__list li {
    margin-bottom: 15px;
    font-size: 1.05em;
}

.page-promotions-new-user-bonus-details__note {
    text-align: center;
    margin-top: 30px;
    font-style: italic;
    color: #A0A0A0;
}

.page-promotions-new-user-bonus-details__note a {
    color: #E0B34E;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions-new-user-bonus-details__note a:hover {
    text-decoration: underline;
}

.page-promotions-new-user-bonus-details__why-choose {
    background-color: #1A1A2E;
}

.page-promotions-new-user-bonus-details__faq {
    background-color: #2A2A4A;
}

.page-promotions-new-user-bonus-details__faq-item {
    background-color: #1A1A2E;
    margin-bottom: 20px;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-user-bonus-details__faq-question {
    font-size: 1.3em;
    color: #E0B34E;
    margin-top: 0;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-promotions-new-user-bonus-details__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #E0B34E;
    transition: transform 0.3s ease;
}

.page-promotions-new-user-bonus-details__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-promotions-new-user-bonus-details__faq-answer {
    font-size: 1em;
    color: #C0C0C0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    opacity: 0;
}

.page-promotions-new-user-bonus-details__faq-answer.active {
    max-height: 200px; /* Adjust based on expected content length */
    opacity: 1;
    margin-top: 10px;
}

.page-promotions-new-user-bonus-details__final-cta {
    text-align: center;
    padding-bottom: 80px;
}

.page-promotions-new-user-bonus-details__contact-info {
    margin-top: 30px;
    font-size: 1.1em;
    color: #C0C0C0;
}

.page-promotions-new-user-bonus-details__contact-info a {
    color: #E0B34E;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions-new-user-bonus-details__contact-info a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-new-user-bonus-details__title {
        font-size: 2.8em;
    }
    .page-promotions-new-user-bonus-details__subtitle {
        font-size: 1.2em;
    }
    .page-promotions-new-user-bonus-details__section-title {
        font-size: 2em;
    }
    .page-promotions-new-user-bonus-details__grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions-new-user-bonus-details__hero {
        padding: 60px 0;
    }
    .page-promotions-new-user-bonus-details__title {
        font-size: 2.2em;
    }
    .page-promotions-new-user-bonus-details__subtitle {
        font-size: 1em;
    }
    .page-promotions-new-user-bonus-details__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
    }
    .page-promotions-new-user-bonus-details__section {
        padding: 40px 0;
    }
    .page-promotions-new-user-bonus-details__section-title {
        font-size: 1.8em;
    }
    .page-promotions-new-user-bonus-details__steps-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .page-promotions-new-user-bonus-details__step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .page-promotions-new-user-bonus-details__title {
        font-size: 1.8em;
    }
    .page-promotions-new-user-bonus-details__subtitle {
        font-size: 0.9em;
    }
    .page-promotions-new-user-bonus-details__section-title {
        font-size: 1.5em;
    }
    .page-promotions-new-user-bonus-details__grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-new-user-bonus-details__list {
        padding-left: 20px;
    }
    .page-promotions-new-user-bonus-details__faq-item {
        padding: 15px 20px;
    }
    .page-promotions-new-user-bonus-details__faq-question {
        font-size: 1.1em;
    }
}