/* style/promotions-daily-deposit-bonus.css */
.page-promotions-daily-deposit-bonus {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default dark text for light body background */
    background-color: #FFFFFF; /* Ensures consistency with shared body background */
}

.page-promotions-daily-deposit-bonus__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 60px;
    overflow: hidden;
}

.page-promotions-daily-deposit-bonus__dark-bg {
    background-color: #017439;
    color: #ffffff;
}

.page-promotions-daily-deposit-bonus__light-bg {
    background-color: #ffffff;
    color: #333333;
}

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

.page-promotions-daily-deposit-bonus__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
}

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

.page-promotions-daily-deposit-bonus__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.page-promotions-daily-deposit-bonus__hero-video-wrapper {
    width: 100%;
    max-width: 1280px; /* Max width for the video wrapper */
    margin-top: 40px;
    box-sizing: border-box;
    overflow: hidden;
}

.page-promotions-daily-deposit-bonus__hero-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer; /* Indicate clickable */
}

.page-promotions-daily-deposit-bonus__section {
    padding: 60px 20px;
    text-align: center;
}

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

.page-promotions-daily-deposit-bonus__section-title {
    font-size: 2.2em;
    margin-bottom: 30px;
    font-weight: bold;
    color: inherit; /* Inherit color from section background */
}

.page-promotions-daily-deposit-bonus__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    color: inherit; /* Inherit color from section background */
}

.page-promotions-daily-deposit-bonus__image-content {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-promotions-daily-deposit-bonus__step-card {
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-daily-deposit-bonus__step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-promotions-daily-deposit-bonus__step-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #017439;
}

.page-promotions-daily-deposit-bonus__step-description {
    font-size: 1em;
    color: #555555;
}

.page-promotions-daily-deposit-bonus__benefits-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 900px;
    margin: 40px auto 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.page-promotions-daily-deposit-bonus__benefits-list .page-promotions-daily-deposit-bonus__list-item {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease;
}

.page-promotions-daily-deposit-bonus__benefits-list .page-promotions-daily-deposit-bonus__list-item:hover {
    transform: translateY(-3px);
}

.page-promotions-daily-deposit-bonus__list-title {
    font-size: 1.3em;
    color: #017439;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions-daily-deposit-bonus__list-item p {
    color: #555555;
    font-size: 0.95em;
}

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

.page-promotions-daily-deposit-bonus__game-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-daily-deposit-bonus__game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-promotions-daily-deposit-bonus__game-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-promotions-daily-deposit-bonus__game-title {
    font-size: 1.4em;
    margin: 15px 15px 10px 15px;
    font-weight: bold;
}

.page-promotions-daily-deposit-bonus__game-title a {
    color: #017439;
    text-decoration: none;
}

.page-promotions-daily-deposit-bonus__game-title a:hover {
    text-decoration: underline;
}

.page-promotions-daily-deposit-bonus__game-description {
    font-size: 0.95em;
    color: #666666;
    padding: 0 15px 20px 15px;
}

.page-promotions-daily-deposit-bonus__features-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 900px;
    margin: 40px auto 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.page-promotions-daily-deposit-bonus__features-list .page-promotions-daily-deposit-bonus__list-item {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease;
}

.page-promotions-daily-deposit-bonus__features-list .page-promotions-daily-deposit-bonus__list-item:hover {
    transform: translateY(-3px);
}

.page-promotions-daily-deposit-bonus__faq-list {
    max-width: 900px;
    margin: 40px auto;
    text-align: left;
}

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

.page-promotions-daily-deposit-bonus__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.15em;
    font-weight: bold;
    color: #017439;
    cursor: pointer;
    background-color: #f7fcf9; /* Lighter shade of green for summary background */
    border-bottom: 1px solid #e0e0e0;
}

.page-promotions-daily-deposit-bonus__faq-item[open] .page-promotions-daily-deposit-bonus__faq-question {
    border-bottom: 1px solid #d0d0d0;
}

.page-promotions-daily-deposit-bonus__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: #017439;
}

.page-promotions-daily-deposit-bonus__faq-answer {
    padding: 15px 25px 20px 25px;
    font-size: 1em;
    color: #555555;
    line-height: 1.6;
}

.page-promotions-daily-deposit-bonus__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-promotions-daily-deposit-bonus__faq-item summary {
    list-style: none;
}

.page-promotions-daily-deposit-bonus__cta-section {
    padding: 80px 20px;
    background-color: #f0fdf5; /* Very light green background */
}

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

.page-promotions-daily-deposit-bonus__btn-primary,
.page-promotions-daily-deposit-bonus__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
    box-sizing: border-box;
    max-width: 100%;
}

.page-promotions-daily-deposit-bonus__btn-primary {
    background-color: #C30808; /* Register/Login button color */
    color: #FFFF00; /* Register/Login font color */
    border: 2px solid #C30808;
}

.page-promotions-daily-deposit-bonus__btn-primary:hover {
    background-color: #a00606;
    border-color: #a00606;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-daily-deposit-bonus__btn-secondary {
    background-color: #017439; /* Main brand color for secondary CTA */
    color: #ffffff;
    border: 2px solid #017439;
}

.page-promotions-daily-deposit-bonus__btn-secondary:hover {
    background-color: #005a2e;
    border-color: #005a2e;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* --- Responsive Styles --- */

/* Mobile specific styles */
@media (max-width: 768px) {
    .page-promotions-daily-deposit-bonus {
        font-size: 15px;
        line-height: 1.5;
    }

    .page-promotions-daily-deposit-bonus__hero-section {
        padding-top: var(--header-offset, 120px) !important; /* Ensure header offset on mobile */
        padding-left: 15px;
        padding-right: 15px;
    }

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

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

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

    .page-promotions-daily-deposit-bonus__btn-primary,
    .page-promotions-daily-deposit-bonus__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-promotions-daily-deposit-bonus__hero-video-wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-promotions-daily-deposit-bonus__hero-video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-promotions-daily-deposit-bonus__section-title {
        font-size: 1.8em;
    }

    .page-promotions-daily-deposit-bonus__text-block {
        font-size: 1em;
    }

    .page-promotions-daily-deposit-bonus__image-content {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .page-promotions-daily-deposit-bonus__steps-grid,
    .page-promotions-daily-deposit-bonus__benefits-list,
    .page-promotions-daily-deposit-bonus__game-cards-grid,
    .page-promotions-daily-deposit-bonus__features-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-promotions-daily-deposit-bonus__step-card,
    .page-promotions-daily-deposit-bonus__benefits-list .page-promotions-daily-deposit-bonus__list-item,
    .page-promotions-daily-deposit-bonus__game-card,
    .page-promotions-daily-deposit-bonus__features-list .page-promotions-daily-deposit-bonus__list-item,
    .page-promotions-daily-deposit-bonus__faq-item {
        padding: 20px;
    }

    .page-promotions-daily-deposit-bonus__game-image {
        height: 200px; /* Adjust height for mobile */
    }

    .page-promotions-daily-deposit-bonus__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }

    .page-promotions-daily-deposit-bonus__faq-answer {
        padding: 10px 20px 15px 20px;
    }

    .page-promotions-daily-deposit-bonus__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Ensure all content containers have max-width and overflow hidden */
    .page-promotions-daily-deposit-bonus__section,
    .page-promotions-daily-deposit-bonus__container,
    .page-promotions-daily-deposit-bonus__steps-grid,
    .page-promotions-daily-deposit-bonus__benefits-list,
    .page-promotions-daily-deposit-bonus__game-cards-grid,
    .page-promotions-daily-deposit-bonus__features-list,
    .page-promotions-daily-deposit-bonus__faq-list,
    .page-promotions-daily-deposit-bonus__cta-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        overflow-x: hidden !important;
    }
}

/* Contrast Fixes (as per instructions) */
.page-promotions-daily-deposit-bonus__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.page-promotions-daily-deposit-bonus__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}