/* style/promotions-welcome-bonus.css */

/* General Styles for the page-promotions-welcome-bonus */
.page-promotions-welcome-bonus {
    font-family: 'Arial', sans-serif;
    color: #333333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

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

.page-promotions-welcome-bonus__section-title {
    font-size: 2.5em;
    color: #007BFF;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    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: #FFC107;
    border-radius: 2px;
}

.page-promotions-welcome-bonus__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
}

.page-promotions-welcome-bonus__btn--primary {
    background-color: #007BFF;
    color: #FFFFFF;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.page-promotions-welcome-bonus__btn--primary:hover {
    background-color: #0056b3;
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.4);
    transform: translateY(-2px);
}

.page-promotions-welcome-bonus__btn--secondary {
    background-color: #FFC107;
    color: #333333;
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.3);
}

.page-promotions-welcome-bonus__btn--secondary:hover {
    background-color: #e0a800;
    box-shadow: 0 6px 15px rgba(255, 193, 7, 0.4);
    transform: translateY(-2px);
}

.page-promotions-welcome-bonus__btn--inline {
    padding: 8px 18px;
    font-size: 0.9em;
    border-radius: 20px;
    background-color: #007BFF;
    color: #FFFFFF;
    margin-top: 10px;
}

.page-promotions-welcome-bonus__btn--inline:hover {
    background-color: #0056b3;
}

/* Hero Section */
.page-promotions-welcome-bonus__hero-section {
    background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%);
    color: #FFFFFF;
    padding: 100px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

.page-promotions-welcome-bonus__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

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

.page-promotions-welcome-bonus__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-welcome-bonus__hero-image-wrapper {
    position: absolute;
    bottom: -50px;
    right: -50px;
    opacity: 0.3;
    z-index: 0;
    width: 300px;
    height: auto;
}

.page-promotions-welcome-bonus__hero-image {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(100%);
}

/* Intro Section */
.page-promotions-welcome-bonus__intro-section {
    padding: 60px 0;
    background-color: #ffffff;
    text-align: center;
}

.page-promotions-welcome-bonus__intro-section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Bonus Types Section */
.page-promotions-welcome-bonus__bonus-types-section {
    padding: 80px 0;
    background-color: #f0f5fa;
}

.page-promotions-welcome-bonus__bonus-card {
    background-color: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #007BFF;
}

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

.page-promotions-welcome-bonus__bonus-card h3 {
    color: #007BFF;
    font-size: 1.8em;
    margin-top: 20px;
    margin-bottom: 15px;
}

.page-promotions-welcome-bonus__bonus-card h4 {
    color: #FFC107;
    font-size: 1.2em;
    margin-top: 20px;
    margin-bottom: 10px;
}

.page-promotions-welcome-bonus__bonus-card p {
    font-size: 1em;
    margin-bottom: 20px;
}

.page-promotions-welcome-bonus__bonus-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-promotions-welcome-bonus__bonus-card ul li {
    padding: 8px 0;
    border-bottom: 1px dashed #e0e0e0;
    color: #555555;
}

.page-promotions-welcome-bonus__bonus-card ul li:last-child {
    border-bottom: none;
}

.page-promotions-welcome-bonus__bonus-card-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

/* How-to-claim Section */
.page-promotions-welcome-bonus__how-to-claim-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

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

.page-promotions-welcome-bonus__steps li {
    position: relative;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
    border-left: 5px solid #FFC107;
}

.page-promotions-welcome-bonus__steps li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    top: -15px;
    left: -15px;
    background-color: #007BFF;
    color: #FFFFFF;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 123, 255, 0.4);
}

.page-promotions-welcome-bonus__steps h4 {
    color: #007BFF;
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-promotions-welcome-bonus__steps p {
    font-size: 1em;
    color: #555555;
}

.page-promotions-welcome-bonus__guide-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 50px auto 0 auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Why Choose Section */
.page-promotions-welcome-bonus__why-choose-section {
    padding: 80px 0;
    background-color: #e6f2ff; /* Lighter shade of primary blue for background */
    color: #333333;
    text-align: center;
}

.page-promotions-welcome-bonus__why-choose-section .page-promotions-welcome-bonus__section-title {
    color: #007BFF;
}

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

.page-promotions-welcome-bonus__features-list li {
    background-color: #FFFFFF;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-right: 4px solid #FFC107;
    transition: transform 0.2s ease;
}

.page-promotions-welcome-bonus__features-list li:hover {
    transform: translateY(-5px);
}

.page-promotions-welcome-bonus__features-list li strong {
    color: #007BFF;
    font-size: 1.15em;
    display: block;
    margin-bottom: 10px;
}

.page-promotions-welcome-bonus__why-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 50px auto 0 auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* FAQ Section */
.page-promotions-welcome-bonus__faq-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.page-promotions-welcome-bonus__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 25px;
    transition: box-shadow 0.3s ease;
}

.page-promotions-welcome-bonus__faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-promotions-welcome-bonus__faq-item h3 {
    color: #007BFF;
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-promotions-welcome-bonus__faq-item p {
    color: #555555;
    margin-bottom: 15px;
}

/* Responsible Gambling Section */
.page-promotions-welcome-bonus__responsible-gambling-section {
    padding: 60px 0;
    background-color: #343a40;
    color: #e0e0e0;
    text-align: center;
}

.page-promotions-welcome-bonus__responsible-gambling-section .page-promotions-welcome-bonus__section-title {
    color: #FFC107;
}

.page-promotions-welcome-bonus__responsible-gambling-section p {
    max-width: 800px;
    margin: 0 auto 20px auto;
    font-size: 1.05em;
}

/* Final CTA Section */
.page-promotions-welcome-bonus__final-cta-section {
    padding: 80px 0;
    background-color: #007BFF;
    color: #FFFFFF;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-promotions-welcome-bonus__final-cta-section .page-promotions-welcome-bonus__section-title {
    color: #FFC107;
    position: relative;
    z-index: 1;
}

.page-promotions-welcome-bonus__final-cta-section .page-promotions-welcome-bonus__section-title::after {
    background-color: #FFFFFF;
}

.page-promotions-welcome-bonus__final-cta-section p {
    font-size: 1.2em;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.page-promotions-welcome-bonus__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* 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 {
        display: none;
    }
}

@media (max-width: 768px) {
    .page-promotions-welcome-bonus__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-welcome-bonus__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions-welcome-bonus__section-title {
        font-size: 1.8em;
    }
    .page-promotions-welcome-bonus__steps {
        grid-template-columns: 1fr;
    }
    .page-promotions-welcome-bonus__features-list {
        grid-template-columns: 1fr;
    }
    .page-promotions-welcome-bonus__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-promotions-welcome-bonus__btn {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .page-promotions-welcome-bonus__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-welcome-bonus__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-promotions-welcome-bonus__section-title {
        font-size: 1.5em;
    }
    .page-promotions-welcome-bonus__bonus-card h3 {
        font-size: 1.5em;
    }
}