/* style/promotions-welcome-bonuses.css */
:root {
    --primary-color: #1A2A44;
    --secondary-color: #FFCC00;
    --dark-bg-1: #0d0d0d;
    --text-light: #ffffff;
    --text-dark: #333333;
    --grey-light: #f1f3f5;
    --grey-medium: #e0e0e0;
}

.page-promotions-welcome-bonuses {
    background-color: var(--dark-bg-1);
    color: var(--text-light);
    font-family: 'Arial', sans-serif;
}

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

.page-promotions-welcome-bonuses__section-title {
    font-size: 36px;
    font-weight: bold;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-promotions-welcome-bonuses__section-description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-welcome-bonuses__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-size: 20px;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
}

.page-promotions-welcome-bonuses__cta-button:hover {
    background: #e6b800;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Intro Section */
.page-promotions-welcome-bonuses__intro-section {
    padding: 180px 0 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d0d0d 100%);
    text-align: center;
    color: var(--text-light);
}

.page-promotions-welcome-bonuses__main-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 30px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-promotions-welcome-bonuses__intro-image-wrapper {
    margin-bottom: 40px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-promotions-welcome-bonuses__intro-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-promotions-welcome-bonuses__intro-text {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #e0e0e0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-welcome-bonuses__intro-text strong {
    color: var(--secondary-color);
}

/* Bonus Types Section */
.page-promotions-welcome-bonuses__bonus-types-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-promotions-welcome-bonuses__bonus-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-promotions-welcome-bonuses__bonus-card {
    background-color: var(--text-light);
    color: var(--text-dark);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-welcome-bonuses__bonus-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.page-promotions-welcome-bonuses__bonus-card-icon {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    object-fit: contain;
}

.page-promotions-welcome-bonuses__bonus-card-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-promotions-welcome-bonuses__bonus-card-text {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
}

/* How To Claim Section */
.page-promotions-welcome-bonuses__how-to-claim-section {
    padding: 80px 0;
    background-color: var(--grey-light);
    color: var(--text-dark);
}

.page-promotions-welcome-bonuses__how-to-claim-section .page-promotions-welcome-bonuses__section-title {
    color: var(--primary-color);
}

.page-promotions-welcome-bonuses__how-to-claim-section .page-promotions-welcome-bonuses__section-description {
    color: #555555;
}

.page-promotions-welcome-bonuses__steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.page-promotions-welcome-bonuses__step-item {
    background-color: var(--text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-welcome-bonuses__step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-promotions-welcome-bonuses__step-icon {
    width: 80px;
    height: auto;
    flex-shrink: 0;
    object-fit: contain;
}

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

.page-promotions-welcome-bonuses__step-title {
    font-size: 22px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-promotions-welcome-bonuses__step-text {
    font-size: 16px;
    line-height: 1.7;
    color: #444444;
}

.page-promotions-welcome-bonuses__cta-bottom {
    text-align: center;
    margin-top: 50px;
}

/* Terms Section */
.page-promotions-welcome-bonuses__terms-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--text-light);
}

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

.page-promotions-welcome-bonuses__terms-item {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--secondary-color);
}

.page-promotions-welcome-bonuses__terms-item-title {
    font-size: 22px;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-promotions-welcome-bonuses__terms-item-text {
    font-size: 16px;
    line-height: 1.7;
    color: #e0e0e0;
}

/* Why Choose Us Section */
.page-promotions-welcome-bonuses__why-choose-us-section {
    padding: 80px 0;
    background-color: var(--grey-light);
    color: var(--text-dark);
}

.page-promotions-welcome-bonuses__why-choose-us-section .page-promotions-welcome-bonuses__section-title {
    color: var(--primary-color);
}

.page-promotions-welcome-bonuses__why-choose-us-section .page-promotions-welcome-bonuses__section-description {
    color: #555555;
}

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

.page-promotions-welcome-bonuses__feature-card {
    background-color: var(--text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-welcome-bonuses__feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.page-promotions-welcome-bonuses__feature-icon {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    object-fit: contain;
}

.page-promotions-welcome-bonuses__feature-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-promotions-welcome-bonuses__feature-text {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
}

/* FAQ Section */
.page-promotions-welcome-bonuses__faq-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-promotions-welcome-bonuses__faq-section .page-promotions-welcome-bonuses__section-title {
    color: var(--secondary-color);
}

.page-promotions-welcome-bonuses__faq-section .page-promotions-welcome-bonuses__section-description {
    color: #e0e0e0;
}

.page-promotions-welcome-bonuses__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-promotions-welcome-bonuses__faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--text-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions-welcome-bonuses__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 25px;
    opacity: 0;
    color: var(--text-dark);
}

.page-promotions-welcome-bonuses__faq-item.active .page-promotions-welcome-bonuses__faq-answer {
    max-height: 2000px !important; /* Sufficiently large to contain any content */
    padding: 20px 25px !important;
    opacity: 1;
    background: #f9f9f9;
    border-radius: 0 0 8px 8px;
}

.page-promotions-welcome-bonuses__faq-answer p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
}

.page-promotions-welcome-bonuses__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: var(--text-light);
    border: 1px solid var(--grey-medium);
    border-radius: 8px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
    color: var(--primary-color);
}

.page-promotions-welcome-bonuses__faq-question:hover {
    background: var(--grey-light);
    border-color: #c0c0c0;
}

.page-promotions-welcome-bonuses__faq-question:active {
    background: #eeeeee;
}

.page-promotions-welcome-bonuses__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    pointer-events: none; /* Allow click event on parent */
    color: var(--primary-color);
}

.page-promotions-welcome-bonuses__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    color: var(--secondary-color);
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-promotions-welcome-bonuses__faq-item.active .page-promotions-welcome-bonuses__faq-toggle {
    transform: rotate(45deg);
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* CTA Section */
.page-promotions-welcome-bonuses__cta-section {
    padding: 80px 0;
    background: linear-gradient(45deg, var(--primary-color), #000000);
    text-align: center;
    color: var(--text-light);
}

.page-promotions-welcome-bonuses__cta-section .page-promotions-welcome-bonuses__section-title {
    color: var(--secondary-color);
}

.page-promotions-welcome-bonuses__cta-section .page-promotions-welcome-bonuses__section-description {
    color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions-welcome-bonuses__main-title {
        font-size: 40px;
    }
    .page-promotions-welcome-bonuses__section-title {
        font-size: 30px;
    }
    .page-promotions-welcome-bonuses__intro-text,
    .page-promotions-welcome-bonuses__section-description {
        font-size: 17px;
    }
    .page-promotions-welcome-bonuses__bonus-card-icon {
        width: 100px;
    }
    .page-promotions-welcome-bonuses__feature-icon {
        width: 80px;
    }
    .page-promotions-welcome-bonuses__step-icon {
        width: 70px;
    }
}

@media (max-width: 768px) {
    .page-promotions-welcome-bonuses__intro-section {
        padding-top: 160px !important;
        padding-bottom: 40px;
    }
    .page-promotions-welcome-bonuses__main-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    .page-promotions-welcome-bonuses__section-title {
        font-size: 26px;
        margin-bottom: 15px;
    }
    .page-promotions-welcome-bonuses__intro-text,
    .page-promotions-welcome-bonuses__section-description,
    .page-promotions-welcome-bonuses__bonus-card-text,
    .page-promotions-welcome-bonuses__step-text,
    .page-promotions-welcome-bonuses__terms-item-text,
    .page-promotions-welcome-bonuses__feature-text,
    .page-promotions-welcome-bonuses__faq-answer p {
        font-size: 15px;
        line-height: 1.6;
    }
    .page-promotions-welcome-bonuses__cta-button {
        padding: 12px 30px;
        font-size: 18px;
    }
    .page-promotions-welcome-bonuses__bonus-cards-grid,
    .page-promotions-welcome-bonuses__terms-list,
    .page-promotions-welcome-bonuses__feature-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-welcome-bonuses__bonus-card,
    .page-promotions-welcome-bonuses__terms-item,
    .page-promotions-welcome-bonuses__feature-card,
    .page-promotions-welcome-bonuses__step-item {
        padding: 25px;
    }
    .page-promotions-welcome-bonuses__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .page-promotions-welcome-bonuses__step-icon {
        margin-bottom: 15px;
        width: 60px;
    }
    .page-promotions-welcome-bonuses__step-title {
        font-size: 20px;
    }
    .page-promotions-welcome-bonuses__faq-question {
        padding: 15px 20px;
    }
    .page-promotions-welcome-bonuses__faq-question h3 {
        font-size: 16px;
    }
    .page-promotions-welcome-bonuses__faq-toggle {
        font-size: 24px;
        width: 28px;
        height: 28px;
        margin-left: 15px;
    }
    .page-promotions-welcome-bonuses__faq-item.active .page-promotions-welcome-bonuses__faq-answer {
        padding: 15px 20px !important;
    }
    .page-promotions-welcome-bonuses__container {
        padding: 0 15px;
    }
    .page-promotions-welcome-bonuses img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
    .page-promotions-welcome-bonuses__section, .page-promotions-welcome-bonuses__card, .page-promotions-welcome-bonuses__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 480px) {
    .page-promotions-welcome-bonuses__main-title {
        font-size: 28px;
    }
    .page-promotions-welcome-bonuses__section-title {
        font-size: 22px;
    }
    .page-promotions-welcome-bonuses__intro-text,
    .page-promotions-welcome-bonuses__section-description {
        font-size: 14px;
    }
    .page-promotions-welcome-bonuses__cta-button {
        font-size: 16px;
        padding: 10px 25px;
        margin-top: 20px;
    }
    .page-promotions-welcome-bonuses__bonus-card-title,
    .page-promotions-welcome-bonuses__step-title,
    .page-promotions-welcome-bonuses__terms-item-title,
    .page-promotions-welcome-bonuses__feature-title {
        font-size: 20px;
    }
    .page-promotions-welcome-bonuses__faq-question h3 {
        font-size: 15px;
    }
    .page-promotions-welcome-bonuses__faq-toggle {
        font-size: 20px;
        width: 24px;
        height: 24px;
    }
    .page-promotions-welcome-bonuses__bonus-card-icon {
        width: 80px;
    }
    .page-promotions-welcome-bonuses__feature-icon {
        width: 70px;
    }
    .page-promotions-welcome-bonuses__step-icon {
        width: 50px;
    }
}