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

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

.page-promotions-deposit-bonuses__hero-section {
    background: linear-gradient(135deg, #004AAD 0%, #002B7A 100%); /* Deeper blue gradient */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-deposit-bonuses__hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, rgba(0, 74, 173, 0) 70%);
    animation: page-promotions-deposit-bonuses__hero-animate 20s infinite linear;
}

@keyframes page-promotions-deposit-bonuses__hero-animate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.page-promotions-deposit-bonuses__main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
    z-index: 1;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-deposit-bonuses__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    color: #e0e0e0;
}

.page-promotions-deposit-bonuses__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold */
    color: #004AAD; /* Dark Blue */
    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;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.page-promotions-deposit-bonuses__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-3px);
}

.page-promotions-deposit-bonuses__section-heading {
    font-size: 2.5em;
    color: #004AAD;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-promotions-deposit-bonuses__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: #555;
}

.page-promotions-deposit-bonuses__intro-section, 
.page-promotions-deposit-bonuses__deposit-bonuses-section, 
.page-promotions-deposit-bonuses__rebate-section, 
.page-promotions-deposit-bonuses__how-to-claim-section, 
.page-promotions-deposit-bonuses__terms-conditions-section, 
.page-promotions-deposit-bonuses__benefits-section, 
.page-promotions-deposit-bonuses__faq-section, 
.page-promotions-deposit-bonuses__final-cta-section {
    padding: 60px 0;
    background-color: #ffffff;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions-deposit-bonuses__intro-section {
    background-color: #f0f8ff;
}

.page-promotions-deposit-bonuses__content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-promotions-deposit-bonuses__text-content {
    flex: 1;
}

.page-promotions-deposit-bonuses__text-content p {
    margin-bottom: 15px;
    font-size: 1.05em;
    color: #444;
}

.page-promotions-deposit-bonuses__image-wrapper {
    flex: 1;
    text-align: center;
}

.page-promotions-deposit-bonuses__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions-deposit-bonuses__bonus-cards-grid, 
.page-promotions-deposit-bonuses__rebate-grid, 
.page-promotions-deposit-bonuses__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-promotions-deposit-bonuses__bonus-card, 
.page-promotions-deposit-bonuses__rebate-item, 
.page-promotions-deposit-bonuses__step-card {
    background-color: #fefefe;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-deposit-bonuses__bonus-card:hover, 
.page-promotions-deposit-bonuses__rebate-item:hover, 
.page-promotions-deposit-bonuses__step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-promotions-deposit-bonuses__card-title, 
.page-promotions-deposit-bonuses__item-title, 
.page-promotions-deposit-bonuses__step-title {
    font-size: 1.8em;
    color: #004AAD;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-deposit-bonuses__card-image, 
.page-promotions-deposit-bonuses__item-image {
    max-width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-promotions-deposit-bonuses__card-text, 
.page-promotions-deposit-bonuses__item-text {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
}

.page-promotions-deposit-bonuses__card-list, 
.page-promotions-deposit-bonuses__item-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: left;
    color: #444;
}

.page-promotions-deposit-bonuses__card-list li, 
.page-promotions-deposit-bonuses__item-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

.page-promotions-deposit-bonuses__card-list li::before, 
.page-promotions-deposit-bonuses__item-list li::before {
    content: '•';
    color: #FFD700;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2em;
    line-height: 1;
}

.page-promotions-deposit-bonuses__card-button {
    display: inline-block;
    background-color: #004AAD;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease;
}

.page-promotions-deposit-bonuses__card-button:hover {
    background-color: #003380;
}

.page-promotions-deposit-bonuses__cta-wrapper {
    text-align: center;
    margin-top: 50px;
}

.page-promotions-deposit-bonuses__step-icon {
    background-color: #FFD700;
    color: #004AAD;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    font-weight: bold;
    margin: 0 auto 20px auto;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.page-promotions-deposit-bonuses__step-text {
    color: #555;
    font-size: 1em;
}

.page-promotions-deposit-bonuses__sub-heading {
    font-size: 1.5em;
    color: #004AAD;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

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

.page-promotions-deposit-bonuses__benefits-list li {
    background-color: #f0f8ff;
    border-left: 5px solid #004AAD;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    font-size: 1.1em;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-promotions-deposit-bonuses__list-icon {
    color: #FFD700;
    font-size: 1.5em;
    margin-right: 15px;
    line-height: 1;
}

.page-promotions-deposit-bonuses__list-icon + p {
    flex: 1;
    margin: 0;
}

.page-promotions-deposit-bonuses__faq-item {
    background-color: #fefefe;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-promotions-deposit-bonuses__faq-question {
    font-size: 1.3em;
    color: #004AAD;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-promotions-deposit-bonuses__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-promotions-deposit-bonuses__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-promotions-deposit-bonuses__faq-answer {
    font-size: 1em;
    color: #555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding-top: 0;
}

.page-promotions-deposit-bonuses__faq-answer.active {
    max-height: 200px; /* Adjust based on content */
    padding-top: 15px;
}

.page-promotions-deposit-bonuses__final-cta-section {
    background: linear-gradient(135deg, #004AAD, #002B7A);
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
    border-radius: 10px;
}

.page-promotions-deposit-bonuses__final-cta-section .page-promotions-deposit-bonuses__section-heading {
    color: #FFD700;
}

.page-promotions-deposit-bonuses__final-cta-section .page-promotions-deposit-bonuses__subtitle {
    color: #e0e0e0;
    margin-bottom: 30px;
}

.page-promotions-deposit-bonuses__secondary-cta-button {
    display: inline-block;
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-left: 20px;
}

.page-promotions-deposit-bonuses__secondary-cta-button:hover {
    background-color: #FFD700;
    color: #004AAD;
}

/* Highlight keyword */
.page-promotions-deposit-bonuses .highlight {
    color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-promotions-deposit-bonuses__main-title {
        font-size: 2.8em;
    }
    .page-promotions-deposit-bonuses__section-heading {
        font-size: 2em;
    }
    .page-promotions-deposit-bonuses__content-grid {
        flex-direction: column;
    }
    .page-promotions-deposit-bonuses__text-content, 
    .page-promotions-deposit-bonuses__image-wrapper {
        flex: none;
        width: 100%;
    }
    .page-promotions-deposit-bonuses__bonus-cards-grid, 
    .page-promotions-deposit-bonuses__rebate-grid, 
    .page-promotions-deposit-bonuses__steps-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-deposit-bonuses__secondary-cta-button {
        margin-left: 0;
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .page-promotions-deposit-bonuses__hero-section {
        padding: 80px 0;
    }
    .page-promotions-deposit-bonuses__main-title {
        font-size: 2.2em;
    }
    .page-promotions-deposit-bonuses__subtitle {
        font-size: 1em;
    }
    .page-promotions-deposit-bonuses__section-heading {
        font-size: 1.8em;
    }
    .page-promotions-deposit-bonuses__cta-button, 
    .page-promotions-deposit-bonuses__secondary-cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-deposit-bonuses__final-cta-section .page-promotions-deposit-bonuses__cta-button {
        margin-bottom: 15px;
    }
    .page-promotions-deposit-bonuses__final-cta-section .page-promotions-deposit-bonuses__cta-button,
    .page-promotions-deposit-bonuses__final-cta-section .page-promotions-deposit-bonuses__secondary-cta-button {
        display: block;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .page-promotions-deposit-bonuses__main-title {
        font-size: 1.8em;
    }
    .page-promotions-deposit-bonuses__section-heading {
        font-size: 1.5em;
    }
    .page-promotions-deposit-bonuses__bonus-card, 
    .page-promotions-deposit-bonuses__rebate-item, 
    .page-promotions-deposit-bonuses__step-card {
        padding: 20px;
    }
    .page-promotions-deposit-bonuses__card-title, 
    .page-promotions-deposit-bonuses__item-title, 
    .page-promotions-deposit-bonuses__step-title {
        font-size: 1.5em;
    }
    .page-promotions-deposit-bonuses__faq-question {
        font-size: 1.1em;
    }
    .page-promotions-deposit-bonuses__benefits-list li {
        font-size: 1em;
        padding: 15px;
    }
}