/* style/promotions-first-deposit-bonus.css */

.page-promotions-first-deposit-bonus {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

.page-promotions-first-deposit-bonus__hero {
    position: relative;
    background: linear-gradient(135deg, #0056B3 0%, #003a7a 100%); /* Darker blue for background */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-promotions-first-deposit-bonus__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 0;
}

.page-promotions-first-deposit-bonus__hero > .page-promotions-first-deposit-bonus__container {
    position: relative;
    z-index: 1;
}

.page-promotions-first-deposit-bonus__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-promotions-first-deposit-bonus__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-promotions-first-deposit-bonus__hero-btn {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #003a7a; /* Dark blue text for contrast */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-first-deposit-bonus__hero-btn:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-promotions-first-deposit-bonus__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions-first-deposit-bonus__section:nth-of-type(even) {
    background-color: #f0f5fa; /* Light blue tint for alternating sections */
}

.page-promotions-first-deposit-bonus__section-title {
    font-size: 2.5em;
    color: #0056B3; /* Main blue for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-promotions-first-deposit-bonus__text {
    font-size: 1.1em;
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
}

.page-promotions-first-deposit-bonus__image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-promotions-first-deposit-bonus__detail-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.page-promotions-first-deposit-bonus__detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions-first-deposit-bonus__detail-title {
    font-size: 1.6em;
    color: #0056B3;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-first-deposit-bonus__steps {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
    margin-top: 30px;
}

.page-promotions-first-deposit-bonus__step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    background-color: #fdfdfd;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.page-promotions-first-deposit-bonus__step-number {
    counter-increment: step-counter;
    width: 40px;
    height: 40px;
    min-width: 40px;
    background-color: #FFD700; /* Gold for step numbers */
    color: #003a7a; /* Dark blue for text */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    margin-right: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-promotions-first-deposit-bonus__step-title {
    font-size: 1.6em;
    color: #0056B3;
    margin-top: 0;
    margin-bottom: 10px;
}

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

.page-promotions-first-deposit-bonus__advantage-item {
    background-color: #ffffff;
    border-left: 5px solid #0056B3; /* Blue accent */
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
}

.page-promotions-first-deposit-bonus__advantage-title {
    font-size: 1.5em;
    color: #0056B3;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-promotions-first-deposit-bonus__checklist {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-promotions-first-deposit-bonus__checklist-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.page-promotions-first-deposit-bonus__checklist-icon {
    font-size: 1.5em;
    color: #0056B3; /* Blue checkmark */
    margin-right: 15px;
    font-weight: bold;
    line-height: 1;
}

.page-promotions-first-deposit-bonus__cta-btn,
.page-promotions-first-deposit-bonus__cta-final-btn {
    display: block;
    width: fit-content;
    margin: 40px auto 20px auto;
    background-color: #FFD700; /* Gold button */
    color: #003a7a; /* Dark blue text */
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.page-promotions-first-deposit-bonus__cta-btn:hover,
.page-promotions-first-deposit-bonus__cta-final-btn:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-promotions-first-deposit-bonus__conclusion {
    text-align: center;
    background-color: #0056B3; /* Main blue for conclusion section */
    color: #fff;
    padding: 80px 0;
}

.page-promotions-first-deposit-bonus__conclusion .page-promotions-first-deposit-bonus__section-title {
    color: #FFD700; /* Gold title for conclusion */
}

.page-promotions-first-deposit-bonus__conclusion .page-promotions-first-deposit-bonus__text {
    color: #e0e0e0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-first-deposit-bonus__hero-title {
        font-size: 2.8em;
    }
    .page-promotions-first-deposit-bonus__hero-subtitle {
        font-size: 1.2em;
    }
    .page-promotions-first-deposit-bonus__section-title {
        font-size: 2em;
    }
    .page-promotions-first-deposit-bonus__grid,
    .page-promotions-first-deposit-bonus__advantages {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-promotions-first-deposit-bonus__hero {
        padding: 60px 0;
    }
    .page-promotions-first-deposit-bonus__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-first-deposit-bonus__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions-first-deposit-bonus__hero-btn {
        padding: 12px 25px;
        font-size: 1.1em;
    }
    .page-promotions-first-deposit-bonus__section {
        padding: 40px 0;
    }
    .page-promotions-first-deposit-bonus__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-promotions-first-deposit-bonus__text {
        font-size: 1em;
    }
    .page-promotions-first-deposit-bonus__detail-item,
    .page-promotions-first-deposit-bonus__advantage-item,
    .page-promotions-first-deposit-bonus__step-item {
        padding: 20px;
    }
    .page-promotions-first-deposit-bonus__detail-title,
    .page-promotions-first-deposit-bonus__step-title,
    .page-promotions-first-deposit-bonus__advantage-title {
        font-size: 1.3em;
    }
    .page-promotions-first-deposit-bonus__step-number {
        width: 35px;
        height: 35px;
        min-width: 35px;
        font-size: 1.3em;
        margin-right: 15px;
    }
    .page-promotions-first-deposit-bonus__cta-btn,
    .page-promotions-first-deposit-bonus__cta-final-btn {
        padding: 15px 30px;
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-promotions-first-deposit-bonus__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-first-deposit-bonus__hero-subtitle {
        font-size: 0.9em;
    }
    .page-promotions-first-deposit-bonus__hero-btn {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-promotions-first-deposit-bonus__section-title {
        font-size: 1.5em;
    }
    .page-promotions-first-deposit-bonus__cta-btn,
    .page-promotions-first-deposit-bonus__cta-final-btn {
        padding: 12px 25px;
        font-size: 1.1em;
    }
}