/* style/promotions-welcome-bonus-details.css */
.page-promotions-welcome-bonus-details {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

.page-promotions-welcome-bonus-details__section {
    padding: 60px 0;
    text-align: center;
}

.page-promotions-welcome-bonus-details__section:nth-of-type(even) {
    background-color: #eee;
}

.page-promotions-welcome-bonus-details__hero-section {
    background: linear-gradient(135deg, #CC0000 0%, #FFD700 100%);
    color: #fff;
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-promotions-welcome-bonus-details__hero-content {
    z-index: 10;
    max-width: 800px;
}

.page-promotions-welcome-bonus-details__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-promotions-welcome-bonus-details__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

.page-promotions-welcome-bonus-details__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Auxiliary color */
    color: #CC0000; /* Main color for text for contrast */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid #FFD700;
}

.page-promotions-welcome-bonus-details__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

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

.page-promotions-welcome-bonus-details__cta-button--secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    transform: translateY(-3px);
}

.page-promotions-welcome-bonus-details__hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    z-index: 5;
}

.page-promotions-welcome-bonus-details__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-promotions-welcome-bonus-details__section-title {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #CC0000; /* Main color */
    font-weight: bold;
}

.page-promotions-welcome-bonus-details__text {
    font-size: 1.1em;
    color: #444;
    max-width: 900px;
    margin: 0 auto 20px auto;
}

.page-promotions-welcome-bonus-details__text .highlight {
    color: #CC0000;
    font-weight: bold;
}

.page-promotions-welcome-bonus-details__bonus-details .page-promotions-welcome-bonus-details__text .highlight {
    color: #CC0000;
    font-weight: bold;
}

.page-promotions-welcome-bonus-details__bonus-item {
    display: flex;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 40px;
    gap: 20px;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-welcome-bonus-details__bonus-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background-color: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-promotions-welcome-bonus-details__icon-image {
    width: 60%;
    height: 60%;
    object-fit: contain;
}

.page-promotions-welcome-bonus-details__bonus-content {
    flex-grow: 1;
}

.page-promotions-welcome-bonus-details__bonus-title {
    font-size: 1.8em;
    color: #CC0000;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-promotions-welcome-bonus-details__cta-wrapper {
    margin-top: 40px;
}

.page-promotions-welcome-bonus-details__how-to-claim .page-promotions-welcome-bonus-details__text .highlight {
    color: #CC0000;
    font-weight: bold;
}

.page-promotions-welcome-bonus-details__steps-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-welcome-bonus-details__step-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-promotions-welcome-bonus-details__step-icon {
    width: 60px;
    height: 60px;
    background-color: #CC0000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.page-promotions-welcome-bonus-details__step-title {
    font-size: 1.5em;
    color: #CC0000;
    margin-bottom: 15px;
}

.page-promotions-welcome-bonus-details__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    margin-bottom: 15px;
}

.page-promotions-welcome-bonus-details__inline-link {
    color: #CC0000;
    text-decoration: underline;
    font-weight: bold;
    margin-top: 10px;
    display: inline-block;
    transition: color 0.3s ease;
}

.page-promotions-welcome-bonus-details__inline-link:hover {
    color: #e60000;
}

.page-promotions-welcome-bonus-details__terms-conditions .page-promotions-welcome-bonus-details__text .highlight {
    color: #CC0000;
    font-weight: bold;
}

.page-promotions-welcome-bonus-details__terms-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 40px;
}

.page-promotions-welcome-bonus-details__terms-item {
    background-color: #fff;
    padding: 25px;
    border-left: 5px solid #CC0000;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-promotions-welcome-bonus-details__terms-subtitle {
    font-size: 1.6em;
    color: #CC0000;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-promotions-welcome-bonus-details__terms-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.page-promotions-welcome-bonus-details__why-choose {
    background-color: #f8f8f8;
}

.page-promotions-welcome-bonus-details__why-choose .page-promotions-welcome-bonus-details__text .highlight {
    color: #CC0000;
    font-weight: bold;
}

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

.page-promotions-welcome-bonus-details__feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.page-promotions-welcome-bonus-details__feature-title {
    font-size: 1.8em;
    color: #CC0000;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-promotions-welcome-bonus-details__feature-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    margin-bottom: 15px;
}

.page-promotions-welcome-bonus-details__faq {
    background-color: #eee;
}

.page-promotions-welcome-bonus-details__faq-item {
    background-color: #fff;
    margin-bottom: 15px;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: left;
}

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

.page-promotions-welcome-bonus-details__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-promotions-welcome-bonus-details__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-promotions-welcome-bonus-details__faq-answer {
    font-size: 1.1em;
    color: #555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    opacity: 0;
    padding-left: 10px;
}

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

.page-promotions-welcome-bonus-details__cta-final {
    background: linear-gradient(135deg, #CC0000, #FFD700);
    color: #fff;
    padding: 80px 20px;
}

.page-promotions-welcome-bonus-details__cta-final-content {
    max-width: 900px;
}

.page-promotions-welcome-bonus-details__cta-final .page-promotions-welcome-bonus-details__section-title {
    color: #fff;
}

.page-promotions-welcome-bonus-details__cta-final .page-promotions-welcome-bonus-details__text {
    color: #f0f0f0;
}

.page-promotions-welcome-bonus-details__cta-final .page-promotions-welcome-bonus-details__text .highlight {
    color: #FFD700;
    font-weight: bold;
}

.page-promotions-welcome-bonus-details__button-group {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-promotions-welcome-bonus-details__app-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin-top: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-promotions-welcome-bonus-details__hero-title {
        font-size: 2.5em;
    }

    .page-promotions-welcome-bonus-details__hero-subtitle {
        font-size: 1.2em;
    }

    .page-promotions-welcome-bonus-details__section-title {
        font-size: 2em;
    }

    .page-promotions-welcome-bonus-details__text {
        font-size: 1em;
    }

    .page-promotions-welcome-bonus-details__bonus-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .page-promotions-welcome-bonus-details__bonus-icon {
        margin-bottom: 20px;
    }

    .page-promotions-welcome-bonus-details__steps-list {
        grid-template-columns: 1fr;
    }

    .page-promotions-welcome-bonus-details__feature-grid {
        grid-template-columns: 1fr;
    }

    .page-promotions-welcome-bonus-details__button-group {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .page-promotions-welcome-bonus-details__hero-title {
        font-size: 2em;
    }

    .page-promotions-welcome-bonus-details__hero-subtitle {
        font-size: 1em;
    }

    .page-promotions-welcome-bonus-details__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-promotions-welcome-bonus-details__section {
        padding: 40px 0;
    }

    .page-promotions-welcome-bonus-details__section-title {
        font-size: 1.8em;
    }

    .page-promotions-welcome-bonus-details__bonus-title {
        font-size: 1.5em;
    }

    .page-promotions-welcome-bonus-details__step-title {
        font-size: 1.3em;
    }

    .page-promotions-welcome-bonus-details__terms-subtitle {
        font-size: 1.4em;
    }

    .page-promotions-welcome-bonus-details__feature-title {
        font-size: 1.5em;
    }

    .page-promotions-welcome-bonus-details__faq-question {
        font-size: 1.2em;
    }
}