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

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

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

.page-latest-promotions-daily-deposit-bonus__section:nth-child(even) {
    background-color: #e9ecef;
}

.page-latest-promotions-daily-deposit-bonus h1,
.page-latest-promotions-daily-deposit-bonus h2 {
    color: #007bff; /* Primary color */
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
}

.page-latest-promotions-daily-deposit-bonus h3 {
    color: #0056b3; /* Darker shade of primary for contrast */
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-latest-promotions-daily-deposit-bonus p {
    margin-bottom: 15px;
    color: #495057;
}

.page-latest-promotions-daily-deposit-bonus ul,
.page-latest-promotions-daily-deposit-bonus ol {
    margin-bottom: 15px;
    padding-left: 25px;
}

.page-latest-promotions-daily-deposit-bonus li {
    margin-bottom: 8px;
    color: #495057;
}

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

.page-latest-promotions-daily-deposit-bonus__btn--primary {
    background-color: #007bff; /* Primary color */
    color: #ffffff;
}

.page-latest-promotions-daily-deposit-bonus__btn--primary:hover {
    background-color: #0056b3; /* Darker primary */
    transform: translateY(-2px);
}

.page-latest-promotions-daily-deposit-bonus__btn--secondary {
    background-color: #ffc107; /* Secondary color */
    color: #333;
}

.page-latest-promotions-daily-deposit-bonus__btn--secondary:hover {
    background-color: #e0a800; /* Darker secondary */
    transform: translateY(-2px);
}

.page-latest-promotions-daily-deposit-bonus__btn--small {
    padding: 8px 18px;
    font-size: 0.9em;
    margin: 5px;
}

.page-latest-promotions-daily-deposit-bonus__hero {
    background: linear-gradient(135deg, #007bff, #0056b3); /* Gradient with primary color */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-latest-promotions-daily-deposit-bonus__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_pattern,gaming,light_blue]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

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

.page-latest-promotions-daily-deposit-bonus__hero h1 {
    color: #ffffff;
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-latest-promotions-daily-deposit-bonus__hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e9ecef;
}

.page-latest-promotions-daily-deposit-bonus__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-latest-promotions-daily-deposit-bonus__hero-image {
    margin-top: 40px;
    position: relative;
    z-index: 1;
    max-width: 600px;
    width: 100%;
}

.page-latest-promotions-daily-deposit-bonus__img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

.page-latest-promotions-daily-deposit-bonus__feature-item {
    text-align: center;
    padding: 25px;
    background-color: #fefefe;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.page-latest-promotions-daily-deposit-bonus__feature-item .page-latest-promotions-daily-deposit-bonus__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    color: #007bff;
}

.page-latest-promotions-daily-deposit-bonus__feature-item h3 {
    color: #007bff;
    font-size: 1.4em;
    margin-top: 0;
}

.page-latest-promotions-daily-deposit-bonus__content-block {
    background-color: #fefefe;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.page-latest-promotions-daily-deposit-bonus__offer-card {
    background-color: #fefefe;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-latest-promotions-daily-deposit-bonus__offer-card:hover {
    transform: translateY(-7px);
}

.page-latest-promotions-daily-deposit-bonus__card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #ffc107; /* Secondary color for accent */
}

.page-latest-promotions-daily-deposit-bonus__offer-card h3 {
    color: #007bff;
    font-size: 1.5em;
    margin: 20px 15px 10px;
}

.page-latest-promotions-daily-deposit-bonus__offer-card p {
    padding: 0 15px 20px;
    flex-grow: 1;
    color: #495057;
}

.page-latest-promotions-daily-deposit-bonus__offer-card .page-latest-promotions-daily-deposit-bonus__btn {
    margin-top: auto; /* Push button to the bottom */
    margin-bottom: 20px;
    align-self: center;
}

.page-latest-promotions-daily-deposit-bonus__steps {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
}

.page-latest-promotions-daily-deposit-bonus__steps li {
    position: relative;
    margin-bottom: 40px;
    padding-left: 70px;
    min-height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fefefe;
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-latest-promotions-daily-deposit-bonus__steps li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: #ffc107; /* Secondary color */
    color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-latest-promotions-daily-deposit-bonus__steps li h3 {
    margin-top: 0;
    color: #007bff;
}

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

.page-latest-promotions-daily-deposit-bonus__term-item,
.page-latest-promotions-daily-deposit-bonus__advantage-item {
    background-color: #fefefe;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.page-latest-promotions-daily-deposit-bonus__term-item h3,
.page-latest-promotions-daily-deposit-bonus__advantage-item h3 {
    color: #007bff;
    margin-top: 0;
}

.page-latest-promotions-daily-deposit-bonus__advantage-item .page-latest-promotions-daily-deposit-bonus__icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    color: #ffc107;
}

.page-latest-promotions-daily-deposit-bonus__tip-list {
    list-style: disc;
    padding-left: 20px;
}

.page-latest-promotions-daily-deposit-bonus__tip-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #495057;
}

.page-latest-promotions-daily-deposit-bonus__tip-list li strong {
    color: #007bff;
}

.page-latest-promotions-daily-deposit-bonus__section--cta {
    text-align: center;
    background-color: #007bff; /* Primary color */
    color: #ffffff;
    padding: 80px 0;
}

.page-latest-promotions-daily-deposit-bonus__section--cta h2 {
    color: #ffffff;
    font-size: 2.5em;
}

.page-latest-promotions-daily-deposit-bonus__section--cta p {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #e9ecef;
}

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

.page-latest-promotions-daily-deposit-bonus__section--faq {
    background-color: #f8f9fa;
}

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

.page-latest-promotions-daily-deposit-bonus__faq-item h3 {
    color: #007bff;
    margin-top: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.25em;
}

.page-latest-promotions-daily-deposit-bonus__faq-item p {
    margin-top: 15px;
    border-top: 1px solid #eee;
    padding-top: 15px;
    display: block; /* Initially visible, JS can toggle */
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-latest-promotions-daily-deposit-bonus__hero h1 {
        font-size: 2.5em;
    }

    .page-latest-promotions-daily-deposit-bonus__hero p {
        font-size: 1em;
    }

    .page-latest-promotions-daily-deposit-bonus__section {
        padding: 40px 0;
    }
}

@media (max-width: 768px) {
    .page-latest-promotions-daily-deposit-bonus__hero {
        padding: 80px 0;
    }

    .page-latest-promotions-daily-deposit-bonus__hero h1 {
        font-size: 2em;
    }

    .page-latest-promotions-daily-deposit-bonus__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-latest-promotions-daily-deposit-bonus__btn {
        width: 80%;
        max-width: 300px;
        margin: 0 auto 15px;
    }

    .page-latest-promotions-daily-deposit-bonus__features,
    .page-latest-promotions-daily-deposit-bonus__offer-grid,
    .page-latest-promotions-daily-deposit-bonus__terms-grid,
    .page-latest-promotions-daily-deposit-bonus__advantages {
        grid-template-columns: 1fr;
    }

    .page-latest-promotions-daily-deposit-bonus__steps li {
        padding-left: 20px;
        padding-top: 60px;
        align-items: flex-start;
    }

    .page-latest-promotions-daily-deposit-bonus__steps li::before {
        top: 15px;
        left: 50%;
        transform: translateX(-50%);
    }

    .page-latest-promotions-daily-deposit-bonus__steps li h3 {
        text-align: center;
    }

    .page-latest-promotions-daily-deposit-bonus__section--cta h2 {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .page-latest-promotions-daily-deposit-bonus__container {
        padding: 0 15px;
    }

    .page-latest-promotions-daily-deposit-bonus__hero h1 {
        font-size: 1.8em;
    }

    .page-latest-promotions-daily-deposit-bonus__hero p {
        font-size: 0.9em;
    }

    .page-latest-promotions-daily-deposit-bonus__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}