/* style/promotions-daily-deposit-rebate.css */

/* Base styles for the page content */
.page-promotions-daily-deposit-rebate {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: transparent; /* Body background is handled by shared.css */
}

/* Hero Section */
.page-promotions-daily-deposit-rebate__hero-section {
    position: relative;
    padding: 80px 20px;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 600px;
    background: linear-gradient(135deg, #017439, #004d2e); /* Brand color gradient */
    color: #ffffff;
    overflow: hidden;
}

.page-promotions-daily-deposit-rebate__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-bottom: 40px;
}

.page-promotions-daily-deposit-rebate__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFFF00; /* Highlight title with custom color */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

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

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

.page-promotions-daily-deposit-rebate__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtle background image */
}

/* General Section Styles */
.page-promotions-daily-deposit-rebate__section {
    padding: 60px 20px;
    text-align: center;
}

.page-promotions-daily-deposit-rebate__content-area {
    max-width: 1200px;
    margin: 0 auto;
}

.page-promotions-daily-deposit-rebate__section-title {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #017439; /* Brand color for titles */
}

/* Background Color Handling for Contrast */
.page-promotions-daily-deposit-rebate__dark-bg {
    background-color: #017439; /* Main brand color for dark sections */
    color: #ffffff;
}

.page-promotions-daily-deposit-rebate__light-bg {
    background-color: #ffffff; /* Auxiliary color for light sections */
    color: #333333; /* Dark text for light background */
}

/* Text Blocks */
.page-promotions-daily-deposit-rebate__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-daily-deposit-rebate__text-block a {
    color: #FFFF00; /* Link color for visibility */
    text-decoration: underline;
}

/* Image with Text Layout */
.page-promotions-daily-deposit-rebate__image-text-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    text-align: left;
}

.page-promotions-daily-deposit-rebate__image-text-block--reverse {
    flex-direction: row-reverse;
}

.page-promotions-daily-deposit-rebate__image-left,
.page-promotions-daily-deposit-rebate__image-right {
    flex: 1;
    max-width: 50%;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.page-promotions-daily-deposit-rebate__text-content {
    flex: 1;
    max-width: 50%;
}

/* Benefits List */
.page-promotions-daily-deposit-rebate__benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.page-promotions-daily-deposit-rebate__benefits-list li {
    background-color: rgba(255, 255, 255, 0.1); /* Subtle background for list items on dark sections */
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #ffffff;
}

.page-promotions-daily-deposit-rebate__light-bg .page-promotions-daily-deposit-rebate__benefits-list li {
    background-color: #f9f9f9;
    color: #333333;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.page-promotions-daily-deposit-rebate__benefit-title {
    font-size: 1.5em;
    color: #FFFF00; /* Highlight benefit titles */
    margin-bottom: 10px;
}

/* CTA Buttons */
.page-promotions-daily-deposit-rebate__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-promotions-daily-deposit-rebate__cta-center {
    margin-top: 40px;
}

.page-promotions-daily-deposit-rebate__btn-primary,
.page-promotions-daily-deposit-rebate__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%; /* Ensure button fits container */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words */
    text-align: center;
}

.page-promotions-daily-deposit-rebate__btn-primary {
    background-color: #C30808; /* Custom color for register/login */
    color: #FFFF00; /* Custom font color for register/login */
    border: 2px solid #C30808;
}

.page-promotions-daily-deposit-rebate__btn-primary:hover {
    background-color: #a00606;
    border-color: #a00606;
    transform: translateY(-3px);
}

.page-promotions-daily-deposit-rebate__btn-secondary {
    background-color: transparent;
    color: #017439; /* Brand color for secondary button text */
    border: 2px solid #017439;
}

.page-promotions-daily-deposit-rebate__dark-bg .page-promotions-daily-deposit-rebate__btn-secondary {
    color: #ffffff;
    border-color: #ffffff;
}

.page-promotions-daily-deposit-rebate__btn-secondary:hover {
    background-color: #017439;
    color: #ffffff;
    transform: translateY(-3px);
}

.page-promotions-daily-deposit-rebate__dark-bg .page-promotions-daily-deposit-rebate__btn-secondary:hover {
    background-color: #ffffff;
    color: #017439;
}


/* Steps Container */
.page-promotions-daily-deposit-rebate__steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.page-promotions-daily-deposit-rebate__step-card {
    background-color: rgba(255, 255, 255, 0.1); /* Subtle background on dark section */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: left;
    color: #ffffff;
}

.page-promotions-daily-deposit-rebate__step-card a {
    color: #FFFF00;
    text-decoration: underline;
}

.page-promotions-daily-deposit-rebate__step-title {
    font-size: 1.6em;
    color: #FFFF00;
    margin-bottom: 15px;
}

/* Image Wrapper */
.page-promotions-daily-deposit-rebate__image-wrapper {
    margin-top: 40px;
}

.page-promotions-daily-deposit-rebate__image-wrapper--center {
    text-align: center;
}

.page-promotions-daily-deposit-rebate__image-full-width {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Terms List */
.page-promotions-daily-deposit-rebate__terms-list {
    list-style: disc;
    padding-left: 20px;
    text-align: left;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #333333; /* Dark text on light background */
}

.page-promotions-daily-deposit-rebate__terms-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-promotions-daily-deposit-rebate__terms-list li strong {
    color: #017439; /* Brand color for strong text */
}

.page-promotions-daily-deposit-rebate__terms-list a {
    color: #017439;
    text-decoration: underline;
}

/* FAQ Section */
.page-promotions-daily-deposit-rebate__faq-container {
    max-width: 900px;
    margin: 0 auto 40px auto;
    text-align: left;
}

.page-promotions-daily-deposit-rebate__faq-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #ffffff;
}

.page-promotions-daily-deposit-rebate__faq-item summary {
    list-style: none; /* Hide default marker */
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #FFFF00; /* Highlight FAQ questions */
}

.page-promotions-daily-deposit-rebate__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for webkit browsers */
}

.page-promotions-daily-deposit-rebate__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-promotions-daily-deposit-rebate__faq-item[open] .page-promotions-daily-deposit-rebate__faq-toggle {
    transform: rotate(45deg); /* Rotate plus to become cross */
}

.page-promotions-daily-deposit-rebate__faq-answer {
    padding: 0 25px 20px;
    font-size: 1.1em;
    color: #f0f0f0;
}

.page-promotions-daily-deposit-rebate__faq-answer p {
    margin: 0;
}

/* CTA Section */
.page-promotions-daily-deposit-rebate__cta-section {
    padding: 80px 20px;
    background-color: #ffffff;
    color: #333333;
}

.page-promotions-daily-deposit-rebate__cta-content .page-promotions-daily-deposit-rebate__section-title {
    color: #017439;
}

.page-promotions-daily-deposit-rebate__cta-content .page-promotions-daily-deposit-rebate__text-block {
    color: #555555;
}

.page-promotions-daily-deposit-rebate__cta-content a {
    color: #017439;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions-daily-deposit-rebate__hero-title {
        font-size: 2.8em;
    }
    .page-promotions-daily-deposit-rebate__section-title {
        font-size: 2em;
    }
    .page-promotions-daily-deposit-rebate__image-text-block {
        flex-direction: column;
        text-align: center;
    }
    .page-promotions-daily-deposit-rebate__image-left,
    .page-promotions-daily-deposit-rebate__image-right,
    .page-promotions-daily-deposit-rebate__text-content {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .page-promotions-daily-deposit-rebate__hero-section {
        padding: 60px 15px;
        padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
        min-height: 450px;
    }
    .page-promotions-daily-deposit-rebate__hero-title {
        font-size: 2.2em;
        margin-bottom: 15px;
    }
    .page-promotions-daily-deposit-rebate__hero-description {
        font-size: 1.1em;
        margin-bottom: 25px;
    }
    .page-promotions-daily-deposit-rebate__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-promotions-daily-deposit-rebate__btn-primary,
    .page-promotions-daily-deposit-rebate__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        white-space: normal !important;
        word-wrap: break-word !important;
        box-sizing: border-box !important;
    }

    .page-promotions-daily-deposit-rebate__section {
        padding: 40px 15px;
    }
    .page-promotions-daily-deposit-rebate__content-area {
        padding-left: 0;
        padding-right: 0;
    }
    .page-promotions-daily-deposit-rebate__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-promotions-daily-deposit-rebate__text-block {
        font-size: 1em;
    }

    /* Images responsiveness */
    .page-promotions-daily-deposit-rebate img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-promotions-daily-deposit-rebate__image-text-block,
    .page-promotions-daily-deposit-rebate__image-text-block--reverse {
        gap: 20px;
    }
    .page-promotions-daily-deposit-rebate__image-left,
    .page-promotions-daily-deposit-rebate__image-right,
    .page-promotions-daily-deposit-rebate__text-content {
        max-width: 100% !important;
        width: 100% !important;
    }
    .page-promotions-daily-deposit-rebate__steps-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-promotions-daily-deposit-rebate__step-card {
        padding: 20px;
    }
    .page-promotions-daily-deposit-rebate__benefit-title {
        font-size: 1.3em;
    }
    .page-promotions-daily-deposit-rebate__faq-item summary {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-promotions-daily-deposit-rebate__faq-answer {
        padding: 0 20px 15px;
        font-size: 1em;
    }
    /* Ensure containers don't cause overflow */
    .page-promotions-daily-deposit-rebate__section,
    .page-promotions-daily-deposit-rebate__card,
    .page-promotions-daily-deposit-rebate__container,
    .page-promotions-daily-deposit-rebate__image-text-block,
    .page-promotions-daily-deposit-rebate__steps-container,
    .page-promotions-daily-deposit-rebate__faq-container,
    .page-promotions-daily-deposit-rebate__cta-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        /* Padding handled by section and content-area, but ensure no overflow */
    }
}