/* style/promotions-deposit-bonus.css */
.page-promotions-deposit-bonus {
    font-family: 'Arial', sans-serif;
    color: #f5e6d0; /* Light text for general content on dark backgrounds */
    background-color: #0A192F;
    line-height: 1.6;
}

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

.page-promotions-deposit-bonus__hero {
    background: linear-gradient(135deg, #0A192F 0%, #304050 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700;
}

.page-promotions-deposit-bonus__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    filter: blur(80px);
}

.page-promotions-deposit-bonus__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background-color: rgba(255, 215, 0, 0.08);
    border-radius: 50%;
    filter: blur(90px);
}

.page-promotions-deposit-bonus__title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

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

.page-promotions-deposit-bonus__btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
}

.page-promotions-deposit-bonus__btn--primary {
    background-color: #FFD700;
    color: #0A192F;
    border-color: #FFD700;
}

.page-promotions-deposit-bonus__btn--primary:hover {
    background-color: #E6C200;
    border-color: #E6C200;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 215, 0, 0.3);
}

.page-promotions-deposit-bonus__btn--secondary {
    background-color: #FFD700;
    color: #0A192F;
    border-color: #FFD700;
    padding: 12px 25px;
    font-size: 1em;
    border-radius: 5px;
}

.page-promotions-deposit-bonus__btn--secondary:hover {
    background-color: #E6C200;
    border-color: #E6C200;
    transform: translateY(-2px);
}

.page-promotions-deposit-bonus__btn--outline {
    background-color: transparent;
    color: #FFD700;
    border-color: #FFD700;
}

.page-promotions-deposit-bonus__btn--outline:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 215, 0, 0.3);
}

.page-promotions-deposit-bonus__section-title {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-promotions-deposit-bonus__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-bonus__section-description {
    font-size: 1.2em;
    color: #E0E0E0;
    text-align: center;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-deposit-bonus__intro {
    padding: 80px 0;
    background-color: #1A2A3F;
}

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

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

.page-promotions-deposit-bonus__intro-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

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

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

.page-promotions-deposit-bonus__intro-item p {
    color: #C0C0C0;
    font-size: 1em;
}

.page-promotions-deposit-bonus__text-center {
    text-align: center;
    margin-top: 60px;
    font-size: 1.1em;
    color: #E0E0E0;
}

.page-promotions-deposit-bonus__offers-list {
    padding: 80px 0;
    background-color: #0A192F;
}

.page-promotions-deposit-bonus__offer-card {
    background-color: #1A2A3F;
    border-radius: 15px;
    margin-bottom: 40px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-deposit-bonus__offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.2);
}

.page-promotions-deposit-bonus__card-header {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    background-color: #304050;
    border-bottom: 3px solid #FFD700;
}

.page-promotions-deposit-bonus__card-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-right: 25px;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.page-promotions-deposit-bonus__card-header h3 {
    color: #FFD700;
    font-size: 2.2em;
    margin: 0;
    line-height: 1.2;
}

.page-promotions-deposit-bonus__card-body {
    padding: 30px;
}

.page-promotions-deposit-bonus__card-body p {
    color: #C0C0C0;
    font-size: 1.1em;
    margin-bottom: 20px;
}

.page-promotions-deposit-bonus__card-body ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.page-promotions-deposit-bonus__card-body ul li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23FFD700" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') no-repeat left center;
    background-size: 18px;
    padding-left: 30px;
    margin-bottom: 10px;
    color: #E0E0E0;
    font-size: 1em;
}

.page-promotions-deposit-bonus__card-body strong {
    color: #FFD700;
}

.page-promotions-deposit-bonus__cta-text {
    font-size: 1.2em;
    font-weight: bold;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 25px;
    text-align: center;
}

.page-promotions-deposit-bonus__cta-banner {
    background: url('[GALLERY:bg:abstract_gold_pattern,dark_blue,luxury,win88]') no-repeat center center / cover;
    background-color: #0A192F;
    padding: 80px 0;
    text-align: center;
    border-top: 3px solid #FFD700;
    border-bottom: 3px solid #FFD700;
}

.page-promotions-deposit-bonus__cta-banner--bottom {
    margin-top: 60px;
}

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

.page-promotions-deposit-bonus__cta-description {
    font-size: 1.4em;
    color: #E0E0E0;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-promotions-deposit-bonus__faq {
    padding: 80px 0;
    background-color: #1A2A3F;
}

.page-promotions-deposit-bonus__faq-item {
    background-color: #0A192F;
    border-radius: 10px;
    padding: 25px 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-left: 5px solid #FFD700;
}

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

.page-promotions-deposit-bonus__faq-item p {
    color: #C0C0C0;
    font-size: 1.05em;
}

.page-promotions-deposit-bonus__responsible-gaming {
    padding: 80px 0;
    background-color: #0A192F;
    text-align: center;
    border-top: 1px solid #304050;
}

.page-promotions-deposit-bonus__responsible-gaming p {
    color: #C0C0C0;
    font-size: 1.1em;
    margin-bottom: 25px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-deposit-bonus__title {
        font-size: 2.8em;
    }
    .page-promotions-deposit-bonus__subtitle {
        font-size: 1.3em;
    }
    .page-promotions-deposit-bonus__section-title {
        font-size: 2.2em;
    }
    .page-promotions-deposit-bonus__cta-title {
        font-size: 2.5em;
    }
    .page-promotions-deposit-bonus__card-header h3 {
        font-size: 1.8em;
    }
    .page-promotions-deposit-bonus__intro-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-promotions-deposit-bonus__hero, .page-promotions-deposit-bonus__intro, .page-promotions-deposit-bonus__offers-list, .page-promotions-deposit-bonus__cta-banner, .page-promotions-deposit-bonus__faq, .page-promotions-deposit-bonus__responsible-gaming {
        padding: 60px 0;
    }
    .page-promotions-deposit-bonus__title {
        font-size: 2.2em;
    }
    .page-promotions-deposit-bonus__subtitle {
        font-size: 1.1em;
    }
    .page-promotions-deposit-bonus__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-deposit-bonus__section-title {
        font-size: 2em;
    }
    .page-promotions-deposit-bonus__section-description {
        font-size: 1em;
    }
    .page-promotions-deposit-bonus__card-header {
        flex-direction: column;
        text-align: center;
    }
    .page-promotions-deposit-bonus__card-image {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .page-promotions-deposit-bonus__card-header h3 {
        font-size: 1.6em;
    }
    .page-promotions-deposit-bonus__cta-title {
        font-size: 2em;
    }
    .page-promotions-deposit-bonus__cta-description {
        font-size: 1.2em;
    }
    .page-promotions-deposit-bonus__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-promotions-deposit-bonus__hero, .page-promotions-deposit-bonus__intro, .page-promotions-deposit-bonus__offers-list, .page-promotions-deposit-bonus__cta-banner, .page-promotions-deposit-bonus__faq, .page-promotions-deposit-bonus__responsible-gaming {
        padding: 40px 0;
    }
    .page-promotions-deposit-bonus__title {
        font-size: 1.8em;
    }
    .page-promotions-deposit-bonus__subtitle {
        font-size: 0.9em;
    }
    .page-promotions-deposit-bonus__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-promotions-deposit-bonus__section-title {
        font-size: 1.8em;
    }
    .page-promotions-deposit-bonus__cta-title {
        font-size: 1.8em;
    }
    .page-promotions-deposit-bonus__faq-item h3 {
        font-size: 1.4em;
    }
}