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

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

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

.page-promotions-deposit-bonus__hero {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); /* Adjusted for better contrast with text */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-deposit-bonus__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ffc107; /* Auxiliary color for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions-deposit-bonus__hero-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #e0e0e0;
}

.page-promotions-deposit-bonus__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.page-promotions-deposit-bonus__cta-button--primary {
    background-color: #ffc107; /* Auxiliary color */
    color: #000000; /* Dark text for contrast */
    border: 2px solid #ffc107;
}

.page-promotions-deposit-bonus__cta-button--primary:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    transform: translateY(-3px);
}

.page-promotions-deposit-bonus__cta-button--secondary {
    background-color: #007bff; /* Main color */
    color: #ffffff;
    border: 2px solid #007bff;
}

.page-promotions-deposit-bonus__cta-button--secondary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-3px);
}

.page-promotions-deposit-bonus__cta-button--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

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

.page-promotions-deposit-bonus__section:nth-of-type(odd) {
    background-color: #f2f7fc; /* Lighter variant of main color for background */
}

.page-promotions-deposit-bonus__section-title {
    font-size: 2.5em;
    color: #007bff; /* Main color */
    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: #ffc107; /* Auxiliary color */
    border-radius: 2px;
}

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

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

.page-promotions-deposit-bonus__grid-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-promotions-deposit-bonus__grid-item:hover {
    transform: translateY(-5px);
}

.page-promotions-deposit-bonus__feature-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(0, 123, 255, 0.4)); /* Subtle shadow for icons */
}

.page-promotions-deposit-bonus__feature-title {
    font-size: 1.5em;
    color: #007bff; /* Main color */
    margin-bottom: 15px;
}

.page-promotions-deposit-bonus__feature-text {
    color: #666;
    font-size: 0.95em;
}

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

.page-promotions-deposit-bonus__promo-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions-deposit-bonus__promo-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.page-promotions-deposit-bonus__promo-card-title {
    font-size: 1.6em;
    color: #007bff; /* Main color */
    padding: 20px 15px 10px;
}

.page-promotions-deposit-bonus__promo-card-text {
    padding: 0 20px 20px;
    color: #555;
    font-size: 0.9em;
}

.page-promotions-deposit-bonus__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    counter-reset: step-counter;
}

.page-promotions-deposit-bonus__step-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    padding-top: 60px; /* Space for step number */
}

.page-promotions-deposit-bonus__step-number {
    counter-increment: step-counter;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffc107; /* Auxiliary color */
    color: #000; /* Dark text for contrast */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    border: 3px solid #007bff; /* Main color border */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions-deposit-bonus__step-title {
    font-size: 1.4em;
    color: #007bff; /* Main color */
    margin-bottom: 15px;
}

.page-promotions-deposit-bonus__step-text {
    color: #666;
    font-size: 0.95em;
    margin-bottom: 20px;
}

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

.page-promotions-deposit-bonus__tip-list li {
    background-color: #e6f0ff; /* Light variant of main color */
    border-left: 5px solid #007bff; /* Main color */
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    color: #333;
}

.page-promotions-deposit-bonus__tip-highlight {
    font-weight: bold;
    color: #0056b3; /* Darker variant of main color */
}

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

.page-promotions-deposit-bonus__faq-question {
    font-size: 1.3em;
    color: #007bff; /* Main color */
    padding: 20px;
    margin: 0;
    cursor: pointer;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.page-promotions-deposit-bonus__faq-answer {
    padding: 20px;
    color: #555;
    display: none;
    border-top: 1px solid #eee;
}

.page-promotions-deposit-bonus__faq-question.active + .page-promotions-deposit-bonus__faq-answer {
    display: block;
}

.page-promotions-deposit-bonus__final-cta {
    background-color: #007bff; /* Main color */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    border-radius: 8px;
    margin-top: 40px;
}

.page-promotions-deposit-bonus__final-cta-title {
    font-size: 3em;
    color: #ffc107; /* Auxiliary color */
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-promotions-deposit-bonus__final-cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #e0e0e0;
}

/* 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,
    .page-promotions-deposit-bonus__promo-card-grid,
    .page-promotions-deposit-bonus__steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-promotions-deposit-bonus__final-cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-promotions-deposit-bonus__hero {
        padding: 80px 0;
    }
    .page-promotions-deposit-bonus__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-deposit-bonus__hero-description {
        font-size: 1.1em;
    }
    .page-promotions-deposit-bonus__section {
        padding: 40px 0;
    }
    .page-promotions-deposit-bonus__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-promotions-deposit-bonus__intro-text {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .page-promotions-deposit-bonus__grid-item,
    .page-promotions-deposit-bonus__promo-card,
    .page-promotions-deposit-bonus__step-item {
        padding: 20px;
    }
    .page-promotions-deposit-bonus__feature-icon {
        width: 60px;
        height: 60px;
    }
    .page-promotions-deposit-bonus__feature-title,
    .page-promotions-deposit-bonus__promo-card-title,
    .page-promotions-deposit-bonus__step-title {
        font-size: 1.3em;
    }
    .page-promotions-deposit-bonus__faq-question {
        font-size: 1.1em;
        padding: 15px;
    }
    .page-promotions-deposit-bonus__final-cta {
        padding: 60px 0;
    }
    .page-promotions-deposit-bonus__final-cta-title {
        font-size: 2em;
    }
    .page-promotions-deposit-bonus__final-cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-promotions-deposit-bonus__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-deposit-bonus__cta-button {
        padding: 12px 20px;
        font-size: 0.9em;
    }
    .page-promotions-deposit-bonus__section-title {
        font-size: 1.5em;
    }
    .page-promotions-deposit-bonus__grid,
    .page-promotions-deposit-bonus__promo-card-grid,
    .page-promotions-deposit-bonus__steps-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-deposit-bonus__step-number {
        width: 40px;
        height: 40px;
        font-size: 1.5em;
        top: -15px;
    }
    .page-promotions-deposit-bonus__step-item {
        padding-top: 50px;
    }
    .page-promotions-deposit-bonus__final-cta-title {
        font-size: 1.8em;
    }
}