/* style/promotions-daily-rebate-deposit.css */
:root {
    --color-primary: #11A84E;
    --color-secondary: #22C768;
    --color-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --color-card-bg: #11271B;
    --color-background: #08160F;
    --color-text-main: #F2FFF6;
    --color-text-secondary: #A7D9B8;
    --color-border: #2E7A4E;
    --color-glow: #57E38D;
    --color-gold: #F2C14E;
    --color-divider: #1E3A2A;
    --color-deep-green: #0A4B2C;
}

.page-promotions-daily-rebate-deposit {
    background-color: var(--color-background);
    color: var(--color-text-main);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-promotions-daily-rebate-deposit__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 20px 60px;
    text-align: center;
    overflow: hidden;
    box-sizing: border-box;
}

.page-promotions-daily-rebate-deposit__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.page-promotions-daily-rebate-deposit__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-promotions-daily-rebate-deposit__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: rgba(8, 22, 15, 0.7); /* Semi-transparent background for readability */
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    margin-top: 100px; /* Space from header */
}

.page-promotions-daily-rebate-deposit__main-title {
    color: var(--color-gold);
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.page-promotions-daily-rebate-deposit__description {
    color: var(--color-text-main);
    margin-bottom: 30px;
    font-size: 1.1em;
}

.page-promotions-daily-rebate-deposit__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-promotions-daily-rebate-deposit__btn-primary,
.page-promotions-daily-rebate-deposit__btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-promotions-daily-rebate-deposit__btn-primary {
    background: var(--color-button-gradient);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-promotions-daily-rebate-deposit__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-promotions-daily-rebate-deposit__btn-secondary {
    background-color: transparent;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
}

.page-promotions-daily-rebate-deposit__btn-secondary:hover {
    background-color: var(--color-gold);
    color: var(--color-background);
    transform: translateY(-2px);
}

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

.page-promotions-daily-rebate-deposit__dark-bg {
    background-color: var(--color-background);
    color: var(--color-text-main);
}

.page-promotions-daily-rebate-deposit__light-bg {
    background-color: var(--color-card-bg);
    color: var(--color-text-main);
}

.page-promotions-daily-rebate-deposit__text-contrast-fix {
    color: var(--color-text-main);
}

.page-promotions-daily-rebate-deposit__container {
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-promotions-daily-rebate-deposit__section-title {
    color: var(--color-gold);
    font-size: 2.5em;
    margin-bottom: 40px;
    position: relative;
}

.page-promotions-daily-rebate-deposit__section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: var(--color-button-gradient);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    border-radius: 2px;
}

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

.page-promotions-daily-rebate-deposit__card {
    background-color: var(--color-card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid var(--color-border);
    color: var(--color-text-main);
}

.page-promotions-daily-rebate-deposit__card-title {
    color: var(--color-primary);
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-promotions-daily-rebate-deposit__card-text {
    color: var(--color-text-secondary);
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions-daily-rebate-deposit__card-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    min-width: 200px;
    min-height: 200px;
}

.page-promotions-daily-rebate-deposit__feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    text-align: left;
}

.page-promotions-daily-rebate-deposit__feature-item {
    background-color: var(--color-card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--color-border);
}

.page-promotions-daily-rebate-deposit__feature-title {
    color: var(--color-primary);
    font-size: 1.4em;
    margin-bottom: 15px;
}

.page-promotions-daily-rebate-deposit__feature-item p {
    color: var(--color-text-secondary);
}

.page-promotions-daily-rebate-deposit__cta-area {
    margin-top: 50px;
}

.page-promotions-daily-rebate-deposit__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-promotions-daily-rebate-deposit__step-card {
    background-color: var(--color-card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid var(--color-border);
    color: var(--color-text-main);
}

.page-promotions-daily-rebate-deposit__step-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
    max-width: 100%;
    height: auto;
}

.page-promotions-daily-rebate-deposit__step-title {
    color: var(--color-primary);
    font-size: 1.3em;
    margin-bottom: 10px;
}

.page-promotions-daily-rebate-deposit__step-text {
    color: var(--color-text-secondary);
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-promotions-daily-rebate-deposit__btn-text-link {
    color: var(--color-gold);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-promotions-daily-rebate-deposit__btn-text-link:hover {
    color: var(--color-glow);
}

.page-promotions-daily-rebate-deposit__faq-list {
    margin-top: 50px;
    text-align: left;
}

.page-promotions-daily-rebate-deposit__faq-item {
    background-color: var(--color-card-bg);
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid var(--color-border);
    overflow: hidden;
}

.page-promotions-daily-rebate-deposit__faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.1em;
    position: relative;
}

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

.page-promotions-daily-rebate-deposit__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: var(--color-gold);
    transition: transform 0.3s ease;
}

.page-promotions-daily-rebate-deposit__faq-item[open] .page-promotions-daily-rebate-deposit__faq-toggle {
    transform: rotate(45deg);
}

.page-promotions-daily-rebate-deposit__faq-answer {
    padding: 0 25px 20px;
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.page-promotions-daily-rebate-deposit__final-cta {
    padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions-daily-rebate-deposit__hero-content {
        margin-top: 80px;
        padding: 30px;
    }

    .page-promotions-daily-rebate-deposit__main-title {
        font-size: 2.2em;
    }

    .page-promotions-daily-rebate-deposit__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-promotions-daily-rebate-deposit__hero-section {
        padding: 10px 15px 40px;
    }
    
    .page-promotions-daily-rebate-deposit__hero-content {
        margin-top: 60px;
        padding: 25px 15px;
    }

    .page-promotions-daily-rebate-deposit__main-title {
        font-size: 1.8em;
    }

    .page-promotions-daily-rebate-deposit__description {
        font-size: 1em;
    }

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

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

    .page-promotions-daily-rebate-deposit__section {
        padding: 40px 15px;
    }

    .page-promotions-daily-rebate-deposit__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-promotions-daily-rebate-deposit__content-grid,
    .page-promotions-daily-rebate-deposit__feature-list,
    .page-promotions-daily-rebate-deposit__steps-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }

    .page-promotions-daily-rebate-deposit__card,
    .page-promotions-daily-rebate-deposit__feature-item,
    .page-promotions-daily-rebate-deposit__step-card {
        padding: 25px;
        text-align: center;
    }

    .page-promotions-daily-rebate-deposit__card-title,
    .page-promotions-daily-rebate-deposit__feature-title,
    .page-promotions-daily-rebate-deposit__step-title {
        font-size: 1.3em;
    }

    .page-promotions-daily-rebate-deposit__faq-item summary {
        font-size: 1em;
        padding: 18px 20px;
    }

    .page-promotions-daily-rebate-deposit__faq-answer {
        padding: 0 20px 18px;
    }

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

    .page-promotions-daily-rebate-deposit__hero-image-wrapper,
    .page-promotions-daily-rebate-deposit__container,
    .page-promotions-daily-rebate-deposit__content-grid,
    .page-promotions-daily-rebate-deposit__feature-list,
    .page-promotions-daily-rebate-deposit__steps-grid,
    .page-promotions-daily-rebate-deposit__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
}

@media (max-width: 480px) {
    .page-promotions-daily-rebate-deposit__main-title {
        font-size: 1.5em;
    }

    .page-promotions-daily-rebate-deposit__section-title {
        font-size: 1.6em;
    }

    .page-promotions-daily-rebate-deposit__hero-content {
        padding: 20px 10px;
        margin-top: 40px;
    }

    .page-promotions-daily-rebate-deposit__section {
        padding: 30px 10px;
    }

    .page-promotions-daily-rebate-deposit__faq-item summary {
        padding: 15px 15px;
        font-size: 0.95em;
    }

    .page-promotions-daily-rebate-deposit__faq-answer {
        padding: 0 15px 15px;
    }
}