/* style/promotions-first-deposit.css */
.page-promotions-first-deposit {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.page-promotions-first-deposit .highlight {
    color: #007bff;
    font-weight: bold;
}

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

.page-promotions-first-deposit__section {
    padding: 60px 0;
    text-align: center;
}

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

.page-promotions-first-deposit__section-title {
    font-size: 2.5em;
    color: #0056b3; /* Darker shade for better contrast on light background */
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.page-promotions-first-deposit__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-first-deposit__section-text {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-first-deposit__text--small {
    font-size: 0.9em;
    color: #777;
    margin-top: 30px;
}

.page-promotions-first-deposit__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1em;
    margin: 10px;
}

.page-promotions-first-deposit__btn--primary {
    background-color: #007bff;
    color: #fff;
}

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

.page-promotions-first-deposit__btn--secondary {
    background-color: #ffc107;
    color: #333;
}

.page-promotions-first-deposit__btn--secondary:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
}

.page-promotions-first-deposit__btn--full-width {
    display: block;
    width: fit-content;
    margin: 30px auto;
    padding: 15px 30px;
    font-size: 1.1em;
}

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

/* Hero Section */
.page-promotions-first-deposit__hero {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); /* Darker blue gradient for hero background */
    color: #fff;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    text-align: left;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.page-promotions-first-deposit__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    filter: blur(50px);
}

.page-promotions-first-deposit__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
    filter: blur(60px);
}

.page-promotions-first-deposit__hero-content {
    max-width: 600px;
    z-index: 1;
}

.page-promotions-first-deposit__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
}

.page-promotions-first-deposit__hero-title .highlight {
    color: #ffc107;
}

.page-promotions-first-deposit__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e9ecef;
}

.page-promotions-first-deposit__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.page-promotions-first-deposit__hero-image-wrapper {
    flex-shrink: 0;
    width: 400px;
    height: 300px;
    position: relative;
    z-index: 1;
}

.page-promotions-first-deposit__hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Introduction Section */
.page-promotions-first-deposit__introduction .page-promotions-first-deposit__image {
    margin-top: 40px;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Details Section */
.page-promotions-first-deposit__details {
    background-color: #f8f9fa;
}

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

.page-promotions-first-deposit__detail-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    min-height: 250px;
}

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

.page-promotions-first-deposit__card-text {
    color: #666;
    flex-grow: 1;
}

.page-promotions-first-deposit__card-icon {
    width: 50px;
    height: 50px;
    margin-top: 20px;
    opacity: 0.7;
}

/* How-to-Claim Section */
.page-promotions-first-deposit__how-to-claim {
    text-align: left;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    position: relative;
}

.page-promotions-first-deposit__how-to-claim .page-promotions-first-deposit__container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.page-promotions-first-deposit__steps {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    min-width: 450px;
}

.page-promotions-first-deposit__step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 15px;
}

.page-promotions-first-deposit__step-number {
    background-color: #007bff;
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4em;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.page-promotions-first-deposit__step-title {
    font-size: 1.4em;
    color: #0056b3;
    margin-bottom: 5px;
}

.page-promotions-first-deposit__step-description {
    color: #666;
}

.page-promotions-first-deposit__image-wrapper--right {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-promotions-first-deposit__image--fluid {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Why 92lottery Section */
.page-promotions-first-deposit__why-92lottery {
    background-color: #f8f9fa;
}

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

.page-promotions-first-deposit__feature-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-first-deposit__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    color: #007bff;
}

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

.page-promotions-first-deposit__feature-text {
    color: #666;
}

/* Responsible Gambling Section */
.page-promotions-first-deposit__responsible-gambling {
    background-color: #007bff; /* Dark blue background */
    color: #fff;
}

.page-promotions-first-deposit__responsible-gambling .page-promotions-first-deposit__section-title {
    color: #ffc107; /* Amber title on dark background */
}

.page-promotions-first-deposit__responsible-gambling .page-promotions-first-deposit__section-title::after {
    background-color: #ffc107;
}

.page-promotions-first-deposit__responsible-gambling .page-promotions-first-deposit__section-text {
    color: #e9ecef;
}

.page-promotions-first-deposit__responsible-gambling .page-promotions-first-deposit__btn--secondary {
    background-color: #ffc107;
    color: #333;
    border: none;
}

.page-promotions-first-deposit__responsible-gambling .page-promotions-first-deposit__btn--secondary:hover {
    background-color: #e0a800;
}

.page-promotions-first-deposit__responsible-gambling .page-promotions-first-deposit__image {
    margin-top: 40px;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page-promotions-first-deposit__faq {
    background-color: #f8f9fa;
}

.page-promotions-first-deposit__faq-item {
    background-color: #fff;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.page-promotions-first-deposit__faq-question {
    font-size: 1.3em;
    color: #007bff;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
}

.page-promotions-first-deposit__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    font-weight: bold;
    color: #ffc107;
}

.page-promotions-first-deposit__faq-item.active .page-promotions-first-deposit__faq-question::after {
    content: '-';
}

.page-promotions-first-deposit__faq-answer {
    color: #666;
    display: none;
    padding-top: 10px;
    border-top: 1px solid #eee;
    margin-top: 15px;
}

.page-promotions-first-deposit__faq-item.active .page-promotions-first-deposit__faq-answer {
    display: block;
}

/* CTA Section */
.page-promotions-first-deposit__cta {
    background-color: #0056b3; /* Darker blue */
    color: #fff;
    padding: 80px 0;
}

.page-promotions-first-deposit__cta .page-promotions-first-deposit__section-title {
    color: #ffc107;
}

.page-promotions-first-deposit__cta .page-promotions-first-deposit__section-title::after {
    background-color: #ffc107;
}

.page-promotions-first-deposit__cta .page-promotions-first-deposit__section-text {
    color: #e9ecef;
    margin-bottom: 40px;
}

.page-promotions-first-deposit__cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-promotions-first-deposit__cta .page-promotions-first-deposit__image {
    margin-top: 50px;
    max-width: 900px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-first-deposit__hero {
        flex-direction: column;
        text-align: center;
        padding: 80px 20px;
    }

    .page-promotions-first-deposit__hero-content {
        max-width: 100%;
    }

    .page-promotions-first-deposit__hero-title {
        font-size: 2.8em;
    }

    .page-promotions-first-deposit__hero-actions {
        justify-content: center;
    }

    .page-promotions-first-deposit__hero-image-wrapper {
        width: 100%;
        height: auto;
        margin-top: 40px;
    }

    .page-promotions-first-deposit__how-to-claim .page-promotions-first-deposit__container {
        flex-direction: column;
    }

    .page-promotions-first-deposit__steps {
        min-width: unset;
        width: 100%;
    }

    .page-promotions-first-deposit__image-wrapper--right {
        width: 100%;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .page-promotions-first-deposit__section-title {
        font-size: 2em;
    }

    .page-promotions-first-deposit__hero-title {
        font-size: 2.2em;
    }

    .page-promotions-first-deposit__hero-description {
        font-size: 1em;
    }

    .page-promotions-first-deposit__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-promotions-first-deposit__grid {
        grid-template-columns: 1fr;
    }

    .page-promotions-first-deposit__features-grid {
        grid-template-columns: 1fr;
    }

    .page-promotions-first-deposit__faq-question {
        font-size: 1.1em;
    }

    .page-promotions-first-deposit__btn--large {
        font-size: 1em;
        padding: 12px 25px;
    }
}

@media (max-width: 480px) {
    .page-promotions-first-deposit__hero-actions {
        flex-direction: column;
    }

    .page-promotions-first-deposit__btn {
        width: 100%;
        margin: 5px 0;
    }

    .page-promotions-first-deposit__cta-actions {
        flex-direction: column;
    }
}