/* style/promotions-deposit-bonus.css */
.page-promotions-deposit-bonus {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    line-height: 1.6;
    background-color: #0A2342;
}

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

.page-promotions-deposit-bonus__hero {
    background: linear-gradient(135deg, #0A2342 0%, #1A3E6A 100%);
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.page-promotions-deposit-bonus__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
    color: #FFFFFF;
}

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

.page-promotions-deposit-bonus__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: #D0D0D0;
}

.page-promotions-deposit-bonus__hero-btn {
    display: inline-block;
    background-color: #FFD700;
    color: #0A2342;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

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

.page-promotions-deposit-bonus__hero-image-wrapper {
    position: absolute;
    bottom: -20px;
    right: 0;
    left: 0;
    display: flex;
    justify-content: center;
    width: 100%;
    height: auto;
    opacity: 0.2;
    z-index: 1;
}

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

.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__intro,
.page-promotions-deposit-bonus__promo-types,
.page-promotions-deposit-bonus__current-promos,
.page-promotions-deposit-bonus__how-to-claim,
.page-promotions-deposit-bonus__terms,
.page-promotions-deposit-bonus__faq,
.page-promotions-deposit-bonus__final-cta {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-promotions-deposit-bonus__intro .page-promotions-deposit-bonus__text-content,
.page-promotions-deposit-bonus__promo-types .page-promotions-deposit-bonus__text-content,
.page-promotions-deposit-bonus__current-promos .page-promotions-deposit-bonus__text-content,
.page-promotions-deposit-bonus__how-to-claim .page-promotions-deposit-bonus__text-content,
.page-promotions-deposit-bonus__terms .page-promotions-deposit-bonus__text-content,
.page-promotions-deposit-bonus__faq .page-promotions-deposit-bonus__text-content,
.page-promotions-deposit-bonus__final-cta .page-promotions-deposit-bonus__text-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    font-size: 1.1em;
    color: #D0D0D0;
}

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

.page-promotions-deposit-bonus__feature-item {
    background-color: #1A3E6A;
    padding: 30px;
    border-radius: 10px;
    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__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

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

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

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

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

.page-promotions-deposit-bonus__type-card {
    background-color: #1A3E6A;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-promotions-deposit-bonus__type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-promotions-deposit-bonus__type-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    filter: brightness(0.8);
    transition: filter 0.3s ease;
}

.page-promotions-deposit-bonus__type-card:hover .page-promotions-deposit-bonus__type-image {
    filter: brightness(1);
}

.page-promotions-deposit-bonus__type-card h3 {
    color: #FFD700;
    font-size: 1.6em;
    margin: 20px 15px 10px;
}

.page-promotions-deposit-bonus__type-card p {
    color: #E0E0E0;
    font-size: 1em;
    padding: 0 15px 20px;
    flex-grow: 1;
}

.page-promotions-deposit-bonus__type-btn {
    display: inline-block;
    background-color: #FFD700;
    color: #0A2342;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
}

.page-promotions-deposit-bonus__type-btn:hover {
    background-color: #FFC400;
}

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

.page-promotions-deposit-bonus__promo-card {
    background-color: #1A3E6A;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-deposit-bonus__promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-promotions-deposit-bonus__promo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.page-promotions-deposit-bonus__promo-header h3 {
    color: #FFD700;
    font-size: 1.7em;
    margin: 0;
}

.page-promotions-deposit-bonus__promo-tag {
    background-color: #FFD700;
    color: #0A2342;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9em;
}

.page-promotions-deposit-bonus__promo-desc {
    color: #E0E0E0;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions-deposit-bonus__promo-desc .highlight {
    color: #FFD700;
    font-weight: 600;
}

.page-promotions-deposit-bonus__promo-details {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-promotions-deposit-bonus__promo-details li {
    color: #D0D0D0;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.page-promotions-deposit-bonus__promo-details li .icon-check {
    color: #FFD700;
    margin-right: 10px;
    font-size: 1.2em; /* Placeholder for icon */
}

/* Simple checkmark icon placeholder */
.page-promotions-deposit-bonus__promo-details li .icon-check::before {
    content: '\2713'; /* Unicode checkmark */
}

.page-promotions-deposit-bonus__promo-btn {
    display: block;
    width: 100%;
    background-color: #FFD700;
    color: #0A2342;
    padding: 12px 20px;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promotions-deposit-bonus__promo-btn:hover {
    background-color: #FFC400;
    transform: translateY(-2px);
}

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

.page-promotions-deposit-bonus__steps li {
    list-style: none;
    text-align: center;
    background-color: #1A3E6A;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    counter-increment: step-counter;
    transition: transform 0.3s ease;
}

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

.page-promotions-deposit-bonus__steps li::before {
    content: counter(step-counter);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFD700;
    color: #0A2342;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: 700;
    border: 3px solid #0A2342;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
}

.page-promotions-deposit-bonus__step-icon-wrapper {
    margin-top: 20px;
    margin-bottom: 20px;
}

.page-promotions-deposit-bonus__step-icon {
    width: 70px;
    height: 70px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

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

.page-promotions-deposit-bonus__steps p {
    color: #D0D0D0;
    font-size: 1em;
}

.page-promotions-deposit-bonus__steps p a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.page-promotions-deposit-bonus__steps p a:hover {
    color: #FFC400;
    text-decoration: underline;
}

.page-promotions-deposit-bonus__cta-bottom {
    text-align: center;
    margin-top: 60px;
}

.page-promotions-deposit-bonus__cta-btn {
    display: inline-block;
    background-color: #FFD700;
    color: #0A2342;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

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

.page-promotions-deposit-bonus__terms-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto 30px auto;
}

.page-promotions-deposit-bonus__terms-list li {
    background-color: #1A3E6A;
    margin-bottom: 15px;
    padding: 20px 30px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    font-size: 1.1em;
    color: #D0D0D0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-deposit-bonus__terms-list li .icon-info {
    color: #FFD700;
    font-size: 1.5em;
    margin-right: 15px;
    flex-shrink: 0;
}

/* Simple info icon placeholder */
.page-promotions-deposit-bonus__terms-list li .icon-info::before {
    content: '\2139'; /* Unicode info symbol */
}

.page-promotions-deposit-bonus__faq-items {
    max-width: 900px;
    margin: 0 auto;
}

.page-promotions-deposit-bonus__faq-item {
    background-color: #1A3E6A;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-deposit-bonus__faq-question {
    color: #FFD700;
    font-size: 1.4em;
    padding: 20px 30px;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-promotions-deposit-bonus__faq-question:hover {
    background-color: #2D5280;
}

.page-promotions-deposit-bonus__faq-question::after {
    content: '+';
    font-size: 1.5em;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.page-promotions-deposit-bonus__faq-item.active .page-promotions-deposit-bonus__faq-question::after {
    content: '-';
    transform: rotate(180deg);
}

.page-promotions-deposit-bonus__faq-answer {
    color: #D0D0D0;
    font-size: 1.05em;
    padding: 0 30px 20px;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-promotions-deposit-bonus__faq-item.active .page-promotions-deposit-bonus__faq-answer {
    max-height: 200px; /* Adjust as needed */
    padding-top: 10px;
}

.page-promotions-deposit-bonus__final-cta {
    text-align: center;
    padding-bottom: 80px;
}

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

.page-promotions-deposit-bonus__cta-buttons .primary {
    background-color: #FFD700;
    color: #0A2342;
}

.page-promotions-deposit-bonus__cta-buttons .primary:hover {
    background-color: #FFC400;
}

.page-promotions-deposit-bonus__cta-buttons .secondary {
    background-color: #0A2342;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-promotions-deposit-bonus__cta-buttons .secondary:hover {
    background-color: #FFD700;
    color: #0A2342;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-deposit-bonus__hero-title {
        font-size: 2.8em;
    }
    .page-promotions-deposit-bonus__hero-subtitle {
        font-size: 1.2em;
    }
    .page-promotions-deposit-bonus__section-title {
        font-size: 2.2em;
    }
    .page-promotions-deposit-bonus__promo-cards,
    .page-promotions-deposit-bonus__steps,
    .page-promotions-deposit-bonus__type-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions-deposit-bonus__hero {
        padding: 60px 0;
    }
    .page-promotions-deposit-bonus__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-deposit-bonus__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions-deposit-bonus__hero-btn {
        padding: 12px 30px;
        font-size: 1.1em;
    }
    .page-promotions-deposit-bonus__section-title {
        font-size: 1.8em;
    }
    .page-promotions-deposit-bonus__intro .page-promotions-deposit-bonus__text-content,
    .page-promotions-deposit-bonus__promo-types .page-promotions-deposit-bonus__text-content,
    .page-promotions-deposit-bonus__current-promos .page-promotions-deposit-bonus__text-content,
    .page-promotions-deposit-bonus__how-to-claim .page-promotions-deposit-bonus__text-content,
    .page-promotions-deposit-bonus__terms .page-promotions-deposit-bonus__text-content,
    .page-promotions-deposit-bonus__faq .page-promotions-deposit-bonus__text-content,
    .page-promotions-deposit-bonus__final-cta .page-promotions-deposit-bonus__text-content {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .page-promotions-deposit-bonus__features,
    .page-promotions-deposit-bonus__type-grid,
    .page-promotions-deposit-bonus__promo-cards,
    .page-promotions-deposit-bonus__steps {
        grid-template-columns: 1fr;
    }
    .page-promotions-deposit-bonus__promo-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .page-promotions-deposit-bonus__promo-tag {
        margin-top: 10px;
    }
    .page-promotions-deposit-bonus__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-promotions-deposit-bonus__cta-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-promotions-deposit-bonus__hero {
        padding: 40px 0;
    }
    .page-promotions-deposit-bonus__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-deposit-bonus__hero-subtitle {
        font-size: 0.9em;
    }
    .page-promotions-deposit-bonus__hero-btn {
        padding: 10px 25px;
        font-size: 1em;
    }
    .page-promotions-deposit-bonus__section-title {
        font-size: 1.5em;
    }
    .page-promotions-deposit-bonus__steps li::before {
        width: 40px;
        height: 40px;
        font-size: 1.5em;
        top: -15px;
    }
    .page-promotions-deposit-bonus__step-icon {
        width: 60px;
        height: 60px;
    }
    .page-promotions-deposit-bonus__faq-question {
        font-size: 1.2em;
        padding: 15px 20px;
    }
    .page-promotions-deposit-bonus__faq-answer {
        font-size: 0.95em;
        padding: 0 20px 15px;
    }
}