/* style/promotions-weekly-monthly-deposit-bonus.css */

.page-promotions-weekly-monthly-deposit-bonus {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #E0E0E0; /* Light gray for text, good contrast with dark background */
    background-color: #1A202C; /* Main brand color */
}

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

.page-promotions-weekly-monthly-deposit-bonus__hero-banner {
    background: linear-gradient(135deg, #1A202C 0%, #333d4e 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    color: #FFFFFF;
}

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

.page-promotions-weekly-monthly-deposit-bonus__hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.page-promotions-weekly-monthly-deposit-bonus__main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Auxiliary brand color */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-promotions-weekly-monthly-deposit-bonus__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    border: none;
}

.page-promotions-weekly-monthly-deposit-bonus__btn--primary {
    background-color: #FFD700;
    color: #1A202C;
}

.page-promotions-weekly-monthly-deposit-bonus__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-promotions-weekly-monthly-deposit-bonus__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    margin-left: 15px;
}

.page-promotions-weekly-monthly-deposit-bonus__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-2px);
}

.page-promotions-weekly-monthly-deposit-bonus__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-promotions-weekly-monthly-deposit-bonus__section:last-of-type {
    border-bottom: none;
}

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

.page-promotions-weekly-monthly-deposit-bonus__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-promotions-weekly-monthly-deposit-bonus__sub-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-promotions-weekly-monthly-deposit-bonus__text-block {
    margin-bottom: 15px;
    color: #E0E0E0;
}

.page-promotions-weekly-monthly-deposit-bonus__highlight {
    color: #FFD700;
    font-weight: bold;
}

.page-promotions-weekly-monthly-deposit-bonus__content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-promotions-weekly-monthly-deposit-bonus__content-grid--reverse {
    grid-template-columns: 1fr 1fr;
}

.page-promotions-weekly-monthly-deposit-bonus__promo-image,
.page-promotions-weekly-monthly-deposit-bonus__benefits-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-promotions-weekly-monthly-deposit-bonus__promo-image:hover,
.page-promotions-weekly-monthly-deposit-bonus__benefits-image:hover {
    transform: scale(1.02);
}

.page-promotions-weekly-monthly-deposit-bonus__feature-list,
.page-promotions-weekly-monthly-deposit-bonus__step-list,
.page-promotions-weekly-monthly-deposit-bonus__benefit-list,
.page-promotions-weekly-monthly-deposit-bonus__terms-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-promotions-weekly-monthly-deposit-bonus__feature-list li,
.page-promotions-weekly-monthly-deposit-bonus__step-list li,
.page-promotions-weekly-monthly-deposit-bonus__benefit-list li,
.page-promotions-weekly-monthly-deposit-bonus__terms-list li {
    background-color: #2D3748; /* Slightly lighter dark background */
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    color: #E0E0E0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-promotions-weekly-monthly-deposit-bonus__feature-list li::before,
.page-promotions-weekly-monthly-deposit-bonus__benefit-list li::before {
    content: '✓';
    color: #FFD700;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2em;
}

.page-promotions-weekly-monthly-deposit-bonus__step-list li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    background-color: #FFD700;
    color: #1A202C;
    font-weight: bold;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    flex-shrink: 0;
}

.page-promotions-weekly-monthly-deposit-bonus__terms-list li::before {
    content: '•';
    color: #FFD700;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2em;
}

.page-promotions-weekly-monthly-deposit-bonus__link-btn {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 2px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.page-promotions-weekly-monthly-deposit-bonus__link-btn:hover {
    color: #e6c200;
    border-color: #e6c200;
}

.page-promotions-weekly-monthly-deposit-bonus__faq-items {
    margin-top: 30px;
}

.page-promotions-weekly-monthly-deposit-bonus__faq-item {
    background-color: #2D3748;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

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

.page-promotions-weekly-monthly-deposit-bonus__faq-question:hover {
    background-color: #3d4758;
}

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

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

.page-promotions-weekly-monthly-deposit-bonus__faq-answer {
    padding: 0 20px 20px;
    color: #E0E0E0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-promotions-weekly-monthly-deposit-bonus__faq-question.active + .page-promotions-weekly-monthly-deposit-bonus__faq-answer {
    max-height: 200px; /* Adjust as needed */
    padding: 0 20px 20px;
}

.page-promotions-weekly-monthly-deposit-bonus__cta-section {
    background-color: #2D3748;
    padding: 80px 0;
    text-align: center;
}

.page-promotions-weekly-monthly-deposit-bonus__cta-buttons {
    margin-top: 30px;
}

.page-promotions-weekly-monthly-deposit-bonus__cta-buttons .page-promotions-weekly-monthly-deposit-bonus__btn:not(:last-child) {
    margin-right: 20px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-promotions-weekly-monthly-deposit-bonus__main-title {
        font-size: 2.5em;
    }
    .page-promotions-weekly-monthly-deposit-bonus__section-title {
        font-size: 2em;
    }
    .page-promotions-weekly-monthly-deposit-bonus__sub-title {
        font-size: 1.5em;
    }
    .page-promotions-weekly-monthly-deposit-bonus__content-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-weekly-monthly-deposit-bonus__content-grid--reverse {
        grid-template-columns: 1fr;
    }
    .page-promotions-weekly-monthly-deposit-bonus__image-wrapper {
        order: -1; /* Image first on mobile for reverse grid */
    }
}

@media (max-width: 768px) {
    .page-promotions-weekly-monthly-deposit-bonus__hero-banner {
        padding: 60px 0;
    }
    .page-promotions-weekly-monthly-deposit-bonus__main-title {
        font-size: 2em;
    }
    .page-promotions-weekly-monthly-deposit-bonus__hero-description {
        font-size: 1em;
    }
    .page-promotions-weekly-monthly-deposit-bonus__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-promotions-weekly-monthly-deposit-bonus__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    .page-promotions-weekly-monthly-deposit-bonus__cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .page-promotions-weekly-monthly-deposit-bonus__cta-buttons .page-promotions-weekly-monthly-deposit-bonus__btn:not(:last-child) {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .page-promotions-weekly-monthly-deposit-bonus__section {
        padding: 40px 0;
    }
    .page-promotions-weekly-monthly-deposit-bonus__section-title {
        font-size: 1.8em;
    }
    .page-promotions-weekly-monthly-deposit-bonus__sub-title {
        font-size: 1.3em;
    }
    .page-promotions-weekly-monthly-deposit-bonus__feature-list li,
    .page-promotions-weekly-monthly-deposit-bonus__step-list li,
    .page-promotions-weekly-monthly-deposit-bonus__benefit-list li,
    .page-promotions-weekly-monthly-deposit-bonus__terms-list li {
        padding: 12px 15px;
    }
}

@media (max-width: 480px) {
    .page-promotions-weekly-monthly-deposit-bonus__hero-banner {
        padding: 40px 0;
    }
    .page-promotions-weekly-monthly-deposit-bonus__main-title {
        font-size: 1.8em;
    }
    .page-promotions-weekly-monthly-deposit-bonus__hero-description {
        font-size: 0.9em;
    }
    .page-promotions-weekly-monthly-deposit-bonus__section-title {
        font-size: 1.5em;
    }
    .page-promotions-weekly-monthly-deposit-bonus__sub-title {
        font-size: 1.2em;
    }
    .page-promotions-weekly-monthly-deposit-bonus__container {
        padding: 0 15px;
    }
}