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

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

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

.page-promotions-welcome-bonus__section:nth-of-type(even) {
    background-color: #e9ecef;
}

.page-promotions-welcome-bonus__section-title {
    font-size: 2.5em;
    color: #0056b3; /* Darker shade of primary for contrast */
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

.page-promotions-welcome-bonus__section-intro {
    font-size: 1.1em;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.page-promotions-welcome-bonus__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.05em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    white-space: nowrap;
}

.page-promotions-welcome-bonus__btn--primary {
    background-color: #007bff;
    color: #fff;
}

.page-promotions-welcome-bonus__btn--primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.page-promotions-welcome-bonus__btn--secondary {
    background-color: #28a745;
    color: #fff;
}

.page-promotions-welcome-bonus__btn--secondary:hover {
    background-color: #1c7530;
    transform: translateY(-2px);
}

.page-promotions-welcome-bonus__btn--download {
    background-color: #6c757d;
    color: #fff;
}

.page-promotions-welcome-bonus__btn--download:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
}

.page-promotions-welcome-bonus__btn--large {
    padding: 15px 35px;
    font-size: 1.2em;
}

/* Hero Section */
.page-promotions-welcome-bonus__hero {
    background: linear-gradient(135deg, #007bff 0%, #28a745 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.page-promotions-welcome-bonus__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float1 10s infinite ease-in-out;
}

.page-promotions-welcome-bonus__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: float2 12s infinite ease-in-out;
}

@keyframes float1 {
    0% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
    100% { transform: translate(0, 0); }
}

@keyframes float2 {
    0% { transform: translate(0, 0); }
    50% { transform: translate(-20px, -20px); }
    100% { transform: translate(0, 0); }
}

.page-promotions-welcome-bonus__hero-content {
    z-index: 1;
    max-width: 900px;
    margin-bottom: 40px;
}

.page-promotions-welcome-bonus__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.page-promotions-welcome-bonus__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    line-height: 1.5;
    color: #e0e0e0;
}

.page-promotions-welcome-bonus__hero-image-wrapper {
    max-width: 600px;
    width: 100%;
    margin-top: 30px;
    z-index: 1;
}

.page-promotions-welcome-bonus__hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Why Choose Section */
.page-promotions-welcome-bonus__why-choose {
    background-color: #fff;
}

.page-promotions-welcome-bonus__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-promotions-welcome-bonus__feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-welcome-bonus__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions-welcome-bonus__feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.1));
}

.page-promotions-welcome-bonus__feature-title {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 15px;
}

.page-promotions-welcome-bonus__feature-description {
    font-size: 1em;
    color: #666;
    line-height: 1.6;
}

/* How To Claim Section */
.page-promotions-welcome-bonus__how-to-claim {
    background-color: #f0f4f7;
    position: relative;
    overflow: hidden;
}

.page-promotions-welcome-bonus__steps {
    list-style: none;
    padding: 0;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.page-promotions-welcome-bonus__step-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
    position: relative;
    padding-left: 90px;
}

.page-promotions-welcome-bonus__step-number {
    position: absolute;
    left: 30px;
    top: 30px;
    width: 50px;
    height: 50px;
    background-color: #007bff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-promotions-welcome-bonus__step-title {
    font-size: 1.4em;
    color: #007bff;
    margin-bottom: 10px;
}

.page-promotions-welcome-bonus__step-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.page-promotions-welcome-bonus__illustration {
    width: 80%;
    max-width: 500px;
    height: auto;
    margin-top: 50px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Bonus Types Section */
.page-promotions-welcome-bonus__bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-promotions-welcome-bonus__bonus-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.page-promotions-welcome-bonus__bonus-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.1));
}

.page-promotions-welcome-bonus__bonus-card-title {
    font-size: 1.4em;
    color: #28a745;
    margin-bottom: 15px;
}

/* Terms & Conditions Section */
.page-promotions-welcome-bonus__terms-conditions {
    background-color: #fff;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.page-promotions-welcome-bonus__terms-conditions .page-promotions-welcome-bonus__container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-promotions-welcome-bonus__list {
    list-style: none;
    padding: 0;
    margin: 50px 0;
    max-width: 900px;
    width: 100%;
}

.page-promotions-welcome-bonus__list li {
    background-color: #f8f8f8;
    border-left: 5px solid #007bff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-promotions-welcome-bonus__list-title {
    font-size: 1.3em;
    color: #007bff;
    margin-bottom: 10px;
}

.page-promotions-welcome-bonus__list p {
    color: #555;
    line-height: 1.6;
}

.page-promotions-welcome-bonus__callout {
    background-color: #e0f7fa; /* Light blue */
    color: #007bff;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
    font-style: italic;
    max-width: 900px;
    width: 100%;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions-welcome-bonus__illustration--right {
    margin-top: 50px;
    float: right;
    margin-left: 40px;
}

/* Tips Section */
.page-promotions-welcome-bonus__tips {
    background-color: #f0f4f7;
}

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

.page-promotions-welcome-bonus__tips-list li {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.page-promotions-welcome-bonus__tips-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.page-promotions-welcome-bonus__tips-list li strong {
    color: #28a745;
    font-size: 1.1em;
    display: block;
    margin-bottom: 5px;
}

.page-promotions-welcome-bonus__tips-list li p {
    color: #666;
    line-height: 1.5;
}

/* More Than Platform Section */
.page-promotions-welcome-bonus__info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-promotions-welcome-bonus__info-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.page-promotions-welcome-bonus__info-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 20px;
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.1));
}

.page-promotions-welcome-bonus__info-card-title {
    font-size: 1.4em;
    color: #007bff;
    margin-bottom: 15px;
}

/* FAQ Section */
.page-promotions-welcome-bonus__faq {
    background-color: #e9ecef;
}

.page-promotions-welcome-bonus__accordion {
    max-width: 900px;
    margin: 50px auto 0;
    text-align: left;
}

.page-promotions-welcome-bonus__accordion-item {
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.page-promotions-welcome-bonus__accordion-header {
    width: 100%;
    padding: 20px 25px;
    background-color: #007bff;
    color: #fff;
    border: none;
    text-align: left;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    position: relative;
}

.page-promotions-welcome-bonus__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-promotions-welcome-bonus__accordion-header.active {
    background-color: #0056b3;
}

.page-promotions-welcome-bonus__accordion-header.active::after {
    transform: rotate(45deg);
}

.page-promotions-welcome-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-welcome-bonus__accordion-content p {
    color: #444;
    line-height: 1.6;
    padding-bottom: 20px;
}

/* Final CTA Section */
.page-promotions-welcome-bonus__cta-final {
    background: linear-gradient(45deg, #28a745 0%, #007bff 100%);
    padding: 80px 0;
    text-align: center;
    color: #fff;
    box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-welcome-bonus__cta-content {
    max-width: 800px;
}

.page-promotions-welcome-bonus__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.page-promotions-welcome-bonus__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    line-height: 1.6;
    color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-welcome-bonus__hero-title {
        font-size: 2.8em;
    }
    .page-promotions-welcome-bonus__section-title {
        font-size: 2em;
    }
    .page-promotions-welcome-bonus__hero-image-wrapper {
        margin-top: 20px;
    }
    .page-promotions-welcome-bonus__illustration--right {
        float: none;
        margin: 40px auto;
    }
}

@media (max-width: 768px) {
    .page-promotions-welcome-bonus__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-welcome-bonus__hero-description {
        font-size: 1.1em;
    }
    .page-promotions-welcome-bonus__section-title {
        font-size: 1.8em;
    }
    .page-promotions-welcome-bonus__section-intro {
        font-size: 1em;
    }
    .page-promotions-welcome-bonus__steps, .page-promotions-welcome-bonus__features, .page-promotions-welcome-bonus__bonus-grid, .page-promotions-welcome-bonus__tips-list, .page-promotions-welcome-bonus__info-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-welcome-bonus__step-item {
        padding-left: 70px;
    }
    .page-promotions-welcome-bonus__step-number {
        width: 40px;
        height: 40px;
        font-size: 1.5em;
        left: 20px;
        top: 20px;
    }
    .page-promotions-welcome-bonus__tips-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .page-promotions-welcome-bonus__tips-icon {
        margin-bottom: 15px;
    }
    .page-promotions-welcome-bonus__cta-title {
        font-size: 2.2em;
    }
    .page-promotions-welcome-bonus__cta-description {
        font-size: 1em;
    }
    .page-promotions-welcome-bonus__list li {
        border-left-width: 3px;
    }
}

@media (max-width: 480px) {
    .page-promotions-welcome-bonus__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-welcome-bonus__hero-description {
        font-size: 0.95em;
    }
    .page-promotions-welcome-bonus__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-promotions-welcome-bonus__btn--large {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-welcome-bonus__section-title {
        font-size: 1.5em;
    }
    .page-promotions-welcome-bonus__accordion-header {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-promotions-welcome-bonus__accordion-content p {
        padding-bottom: 15px;
    }
}