/* style/promotions-deposit-bonuses.css */

.page-promotions-deposit-bonuses {
    font-family: 'Arial', sans-serif;
    color: #FFFFFF; /* Default text color for dark background */
    background-color: #0A244A; /* Main background color */
}

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

/* Hero Section */
.page-promotions-deposit-bonuses__hero {
    background: linear-gradient(135deg, #0A244A 0%, #2A4A6A 100%); /* Dark blue gradient */
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-deposit-bonuses__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-bottom: 40px;
}

.page-promotions-deposit-bonuses__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for title */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-deposit-bonuses__hero-subtitle {
    font-size: 1.3em;
    color: #E0E0E0;
    margin-bottom: 30px;
}

.page-promotions-deposit-bonuses__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.2;
    pointer-events: none;
}

.page-promotions-deposit-bonuses__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(50%) brightness(70%);
}

/* General Section Styling */
.page-promotions-deposit-bonuses__section {
    padding: 60px 0;
    text-align: center;
    color: #E0E0E0;
}

.page-promotions-deposit-bonuses__section--alt-bg {
    background-color: #1A3C5B; /* Slightly lighter dark blue */
}

.page-promotions-deposit-bonuses__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-promotions-deposit-bonuses__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-promotions-deposit-bonuses__section-title--light {
    color: #FFFFFF;
}

.page-promotions-deposit-bonuses__text--light {
    color: #F0F0F0;
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Buttons */
.page-promotions-deposit-bonuses__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-promotions-deposit-bonuses__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #0A244A; /* Dark blue text on gold */
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions-deposit-bonuses__btn--primary:hover {
    background-color: #E6C200; /* Darker gold on hover */
    transform: translateY(-3px);
}

.page-promotions-deposit-bonuses__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
    margin-left: 20px;
}

.page-promotions-deposit-bonuses__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A244A;
    transform: translateY(-3px);
}

.page-promotions-deposit-bonuses__btn--inverted {
    background-color: #FFFFFF;
    color: #0A244A;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.page-promotions-deposit-bonuses__btn--inverted:hover {
    background-color: #F0F0F0;
    transform: translateY(-3px);
}

.page-promotions-deposit-bonuses__btn--text {
    background: none;
    border: none;
    color: #FFD700;
    text-decoration: underline;
    padding: 10px 0;
    font-size: 1em;
}

.page-promotions-deposit-bonuses__btn--text:hover {
    color: #E6C200;
}

/* Features Grid */
.page-promotions-deposit-bonuses__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-deposit-bonuses__feature-item {
    background-color: #1A3C5B;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-align: left;
    transition: transform 0.3s ease;
}

.page-promotions-deposit-bonuses__feature-item:hover {
    transform: translateY(-10px);
}

.page-promotions-deposit-bonuses__feature-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-promotions-deposit-bonuses__feature-description {
    font-size: 1.05em;
    color: #E0E0E0;
    line-height: 1.6;
}

/* Bonus Types */
.page-promotions-deposit-bonuses__bonus-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-deposit-bonuses__bonus-card {
    background-color: #0A244A;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #FFD70033;
}

.page-promotions-deposit-bonuses__bonus-card:hover {
    transform: translateY(-10px);
    border-color: #FFD700;
}

.page-promotions-deposit-bonuses__bonus-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-promotions-deposit-bonuses__bonus-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-promotions-deposit-bonuses__bonus-description {
    font-size: 1em;
    color: #C0C0C0;
    line-height: 1.5;
}

/* Steps */
.page-promotions-deposit-bonuses__steps {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    text-align: left;
}

.page-promotions-deposit-bonuses__steps li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    font-size: 1.1em;
    color: #E0E0E0;
    line-height: 1.6;
}

.page-promotions-deposit-bonuses__step-number {
    background-color: #FFD700;
    color: #0A244A;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2em;
    margin-right: 15px;
    flex-shrink: 0;
}

.page-promotions-deposit-bonuses__step-text strong {
    color: #FFD700;
}

.page-promotions-deposit-bonuses__cta-text {
    font-size: 1.2em;
    color: #FFD700;
    margin-top: 40px;
    margin-bottom: 30px;
}

/* Image Background Section */
.page-promotions-deposit-bonuses__section--image-bg {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background-color: #0A244A;
}

.page-promotions-deposit-bonuses__section-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15; /* Subtle overlay */
    z-index: 0;
}

.page-promotions-deposit-bonuses__image-text-content {
    position: relative;
    z-index: 1;
    text-align: left;
}

.page-promotions-deposit-bonuses__list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    margin-bottom: 30px;
}

.page-promotions-deposit-bonuses__list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 1.1em;
    line-height: 1.6;
    color: #F0F0F0;
}

.page-promotions-deposit-bonuses__list li::before {
    content: '✔'; /* Checkmark icon */
    color: #FFD700;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Terms List */
.page-promotions-deposit-bonuses__terms-list {
    list-style: disc;
    text-align: left;
    margin: 30px auto;
    max-width: 800px;
    color: #C0C0C0;
    font-size: 1em;
    line-height: 1.6;
}

.page-promotions-deposit-bonuses__terms-list li {
    margin-bottom: 10px;
}

/* FAQ Section */
.page-promotions-deposit-bonuses__faq-section {
    background-color: #1A3C5B;
}

.page-promotions-deposit-bonuses__faq-item {
    background-color: #0A244A;
    border: 1px solid #FFD70033;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    text-align: left;
    transition: border-color 0.3s ease;
}

.page-promotions-deposit-bonuses__faq-item:hover {
    border-color: #FFD700;
}

.page-promotions-deposit-bonuses__faq-question {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-promotions-deposit-bonuses__faq-answer {
    font-size: 1em;
    color: #C0C0C0;
    line-height: 1.6;
}

/* Final CTA Section */
.page-promotions-deposit-bonuses__cta-final {
    padding: 80px 0;
    background: linear-gradient(45deg, #0A244A, #1A3C5B);
    text-align: center;
}

.page-promotions-deposit-bonuses__cta-final-title {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-promotions-deposit-bonuses__cta-final-text {
    font-size: 1.3em;
    color: #E0E0E0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-deposit-bonuses__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-deposit-bonuses__hero-title {
        font-size: 2.8em;
    }

    .page-promotions-deposit-bonuses__section-title {
        font-size: 2em;
    }

    .page-promotions-deposit-bonuses__cta-final-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-promotions-deposit-bonuses__hero {
        padding: 60px 0;
    }

    .page-promotions-deposit-bonuses__hero-title {
        font-size: 2.2em;
    }

    .page-promotions-deposit-bonuses__hero-subtitle {
        font-size: 1.1em;
    }

    .page-promotions-deposit-bonuses__section {
        padding: 40px 0;
    }

    .page-promotions-deposit-bonuses__section-title {
        font-size: 1.8em;
    }

    .page-promotions-deposit-bonuses__features-grid,
    .page-promotions-deposit-bonuses__bonus-types {
        grid-template-columns: 1fr;
    }

    .page-promotions-deposit-bonuses__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-promotions-deposit-bonuses__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }

    .page-promotions-deposit-bonuses__cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-promotions-deposit-bonuses__cta-buttons .page-promotions-deposit-bonuses__btn {
        width: 80%;
        max-width: 300px;
    }

    .page-promotions-deposit-bonuses__image-text-content {
        text-align: center;
    }

    .page-promotions-deposit-bonuses__list {
        text-align: left;
        padding-left: 20px;
    }

    .page-promotions-deposit-bonuses__list li {
        padding-left: 25px;
    }
}

@media (max-width: 480px) {
    .page-promotions-deposit-bonuses__hero-title {
        font-size: 1.8em;
    }

    .page-promotions-deposit-bonuses__hero-subtitle {
        font-size: 1em;
    }

    .page-promotions-deposit-bonuses__section-title {
        font-size: 1.5em;
    }

    .page-promotions-deposit-bonuses__cta-final-title {
        font-size: 2em;
    }
}