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

.page-promotions-deposit-bonus .highlight {
    color: #0A2463;
    font-weight: bold;
}

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

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

.page-promotions-deposit-bonus__section:nth-child(even) {
    background-color: #f2f2f2;
}

.page-promotions-deposit-bonus__section-title {
    font-size: 2.5em;
    color: #0A2463;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-promotions-deposit-bonus__section-title .highlight {
    color: #E0B94A;
}

/* Hero Section */
.page-promotions-deposit-bonus__hero-section {
    background: linear-gradient(135deg, #0A2463 0%, #304a91 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 15px 15px;
}

.page-promotions-deposit-bonus__hero-content {
    max-width: 800px;
    z-index: 1;
    padding: 0 20px;
}

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

.page-promotions-deposit-bonus__hero-title .highlight {
    color: #E0B94A;
}

.page-promotions-deposit-bonus__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-promotions-deposit-bonus__hero-cta,
.page-promotions-deposit-bonus__cta-button {
    display: inline-block;
    background-color: #E0B94A;
    color: #0A2463;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid transparent;
}

.page-promotions-deposit-bonus__hero-cta:hover,
.page-promotions-deposit-bonus__cta-button:hover {
    background-color: #f5cb51;
    transform: translateY(-3px);
    border-color: #0A2463;
}

.page-promotions-deposit-bonus__hero-image-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0.1;
    max-width: 500px;
    z-index: 0;
}

.page-promotions-deposit-bonus__hero-image {
    width: 100%;
    height: auto;
}

/* Grid for bonus types */
.page-promotions-deposit-bonus__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-deposit-bonus__grid--2-col {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.page-promotions-deposit-bonus__card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-promotions-deposit-bonus__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}

.page-promotions-deposit-bonus__card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    object-fit: contain;
}

.page-promotions-deposit-bonus__card-title {
    font-size: 1.5em;
    color: #0A2463;
    margin-bottom: 15px;
}

.page-promotions-deposit-bonus__card p {
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions-deposit-bonus__card-cta {
    display: inline-block;
    background-color: #0A2463;
    color: #E0B94A;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-promotions-deposit-bonus__card-cta:hover {
    background-color: #E0B94A;
    color: #0A2463;
}

/* List styling */
.page-promotions-deposit-bonus__list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-promotions-deposit-bonus__list li {
    background-color: #f9f9f9;
    border-left: 5px solid #E0B94A;
    margin-bottom: 15px;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    color: #333;
}

.page-promotions-deposit-bonus__list li strong {
    color: #0A2463;
}

.page-promotions-deposit-bonus__list--styled li {
    border-left: none;
    background-color: transparent;
    box-shadow: none;
    padding-left: 30px;
    position: relative;
}

.page-promotions-deposit-bonus__list--styled li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #E0B94A;
    font-size: 1.2em;
    top: 12px;
}

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

.page-promotions-deposit-bonus__steps-list li {
    counter-increment: step-counter;
    background-color: #f9f9f9;
    margin-bottom: 20px;
    padding: 20px 25px 20px 70px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 2px 5px rgba(0,0,0,0.07);
    font-size: 1.1em;
    color: #333;
}

.page-promotions-deposit-bonus__steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #0A2463;
    color: #E0B94A;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
}

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

.page-promotions-deposit-bonus__image-full-width {
    width: 100%;
    height: auto;
    margin-top: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.page-promotions-deposit-bonus__text-center {
    text-align: center;
    margin-top: 20px;
}

.page-promotions-deposit-bonus__cta-button--large {
    padding: 18px 35px;
    font-size: 1.2em;
    margin-top: 30px;
}

.page-promotions-deposit-bonus__final-cta {
    background: linear-gradient(135deg, #0A2463 0%, #E0B94A 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    border-radius: 15px;
    margin-top: 40px;
}

.page-promotions-deposit-bonus__final-cta .page-promotions-deposit-bonus__section-title {
    color: #fff;
}

.page-promotions-deposit-bonus__final-cta p {
    color: #f0f0f0;
    font-size: 1.1em;
    margin-bottom: 40px;
}

.page-promotions-deposit-bonus__final-cta .page-promotions-deposit-bonus__cta-button {
    background-color: #fff;
    color: #0A2463;
    border: 2px solid #0A2463;
}

.page-promotions-deposit-bonus__final-cta .page-promotions-deposit-bonus__cta-button:hover {
    background-color: #0A2463;
    color: #E0B94A;
    border-color: #E0B94A;
}

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

@media (max-width: 768px) {
    .page-promotions-deposit-bonus__hero-section {
        padding: 60px 0;
    }
    .page-promotions-deposit-bonus__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-deposit-bonus__hero-description {
        font-size: 1em;
    }
    .page-promotions-deposit-bonus__hero-image-wrapper {
        display: none;
    }
    .page-promotions-deposit-bonus__section {
        padding: 40px 0;
    }
    .page-promotions-deposit-bonus__section-title {
        font-size: 1.8em;
    }
    .page-promotions-deposit-bonus__grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-deposit-bonus__card {
        padding: 25px;
    }
    .page-promotions-deposit-bonus__steps-list li {
        padding: 15px 20px 15px 60px;
        font-size: 1em;
    }
    .page-promotions-deposit-bonus__steps-list li::before {
        width: 30px;
        height: 30px;
        font-size: 1em;
        left: 15px;
    }
}

@media (max-width: 480px) {
    .page-promotions-deposit-bonus__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-deposit-bonus__hero-cta,
    .page-promotions-deposit-bonus__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-deposit-bonus__section-title {
        font-size: 1.5em;
    }
    .page-promotions-deposit-bonus__final-cta {
        padding: 50px 0;
    }
    .page-promotions-deposit-bonus__final-cta .page-promotions-deposit-bonus__cta-button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}