.page-promotions-daily-rewards {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for the page, assuming dark body background */
    background-color: var(--black-color); /* Inherit from shared, likely dark */
}

/* Header offset for main content */
.page-promotions-daily-rewards__hero-section {
    padding-top: var(--header-offset, 120px); /* Apply header offset here */
}

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

.page-promotions-daily-rewards__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* Add some padding for smaller screens */
    box-sizing: border-box;
}

.page-promotions-daily-rewards__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    background-color: #000000; /* Dark background for hero */
    overflow: hidden;
    padding-bottom: 60px; /* Ensure space below hero content */
}

.page-promotions-daily-rewards__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.6; /* Slightly dim image to ensure text contrast */
}

.page-promotions-daily-rewards__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    color: #ffffff;
    padding: 20px;
}

.page-promotions-daily-rewards__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

.page-promotions-daily-rewards__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

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

.page-promotions-daily-rewards__btn-primary {
    background-color: #26A9E0;
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-promotions-daily-rewards__btn-primary:hover {
    background-color: #1a7fb4;
    border-color: #1a7fb4;
}

.page-promotions-daily-rewards__btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.page-promotions-daily-rewards__btn-secondary:hover {
    background-color: #ffffff;
    color: #26A9E0;
}

.page-promotions-daily-rewards__btn-center {
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    display: block; /* Ensure it takes full width when centered */
    width: fit-content; /* Allow button to shrink to content width */
    min-width: 200px; /* Minimum width for better appearance */
}

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

.page-promotions-daily-rewards__introduction-section,
.page-promotions-daily-rewards__participation-section,
.page-promotions-daily-rewards__tips-section {
    background-color: #ffffff; /* Light background for contrast */
    color: #333333; /* Dark text on light background */
}

.page-promotions-daily-rewards__introduction-section .page-promotions-daily-rewards__section-title,
.page-promotions-daily-rewards__participation-section .page-promotions-daily-rewards__section-title,
.page-promotions-daily-rewards__tips-section .page-promotions-daily-rewards__section-title {
    color: #26A9E0;
}

.page-promotions-daily-rewards__introduction-section p,
.page-promotions-daily-rewards__participation-section p,
.page-promotions-daily-rewards__tips-section p {
    color: #333333;
}

.page-promotions-daily-rewards__introduction-section a,
.page-promotions-daily-rewards__participation-section a,
.page-promotions-daily-rewards__tips-section a {
    color: #26A9E0;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions-daily-rewards__introduction-section a:hover,
.page-promotions-daily-rewards__participation-section a:hover,
.page-promotions-daily-rewards__tips-section a:hover {
    text-decoration: underline;
}

.page-promotions-daily-rewards__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.page-promotions-daily-rewards__dark-bg {
    background-color: #26A9E0; /* Brand color as background */
    color: #ffffff; /* White text on brand color */
}

.page-promotions-daily-rewards__dark-bg .page-promotions-daily-rewards__section-title {
    color: #ffffff; /* White title on brand color */
}

.page-promotions-daily-rewards__dark-bg .page-promotions-daily-rewards__text-block {
    color: #f0f0f0;
}

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

.page-promotions-daily-rewards__card {
    background-color: #ffffff; /* White background for cards */
    color: #333333; /* Dark text on white card */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    min-height: 250px; /* Ensure cards have some height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-promotions-daily-rewards__card-title {
    font-size: 1.4em;
    color: #26A9E0; /* Brand color for card titles */
    margin-bottom: 15px;
}

.page-promotions-daily-rewards__card-description {
    font-size: 1em;
    line-height: 1.5;
}

.page-promotions-daily-rewards__section-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto 0 auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    min-width: 200px; /* Minimum size for content images */
    min-height: 200px;
}

.page-promotions-daily-rewards__steps-list,
.page-promotions-daily-rewards__terms-list,
.page-promotions-daily-rewards__tips-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    text-align: left;
}

.page-promotions-daily-rewards__list-item {
    font-size: 1.1em;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #333333; /* Dark text on light background */
}

.page-promotions-daily-rewards__list-item::before {
    content: '✓';
    color: #26A9E0;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.page-promotions-daily-rewards__terms-list .page-promotions-daily-rewards__list-item {
    color: #ffffff; /* White text on brand color background */
}

.page-promotions-daily-rewards__terms-list .page-promotions-daily-rewards__list-item::before {
    color: #ffffff;
}

.page-promotions-daily-rewards__terms-list a {
    color: #ffffff;
    text-decoration: underline;
}

.page-promotions-daily-rewards__faq-section {
    background-color: #26A9E0; /* Brand color background */
    color: #ffffff; /* White text on brand color */
}

.page-promotions-daily-rewards__faq-list {
    max-width: 800px;
    margin: 40px auto 0 auto;
    text-align: left;
}

.page-promotions-daily-rewards__faq-item {
    background-color: #ffffff; /* White background for FAQ item */\    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions-daily-rewards__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background-color: #f8f8f8; /* Light gray for question background */
    color: #333333; /* Dark text for question */
    font-weight: bold;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
}

.page-promotions-daily-rewards__faq-question:hover {
    background-color: #e0e0e0;
}

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

.page-promotions-daily-rewards__faq-item.active .page-promotions-daily-rewards__faq-toggle {
    transform: rotate(45deg);
}

.page-promotions-daily-rewards__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    background-color: #ffffff; /* White background for answer */
    color: #555555; /* Slightly lighter dark text for answer */
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-promotions-daily-rewards__faq-item.active .page-promotions-daily-rewards__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to contain content */
    padding: 20px 25px;
}

.page-promotions-daily-rewards__faq-answer p {
    margin: 0;
    color: #555555; /* Ensure text in answer is dark */
}

.page-promotions-daily-rewards__cta-final-section {
    background-color: #000000; /* Dark background for final CTA */
    color: #ffffff;
    padding: 80px 20px;
}

.page-promotions-daily-rewards__cta-final-section .page-promotions-daily-rewards__section-title {
    color: #ffffff;
    font-size: 3em;
}

.page-promotions-daily-rewards__cta-final-section .page-promotions-daily-rewards__text-block {
    color: #f0f0f0;
    font-size: 1.2em;
    max-width: 800px;
    margin: 20px auto 40px auto;
}

/* Global image styles */
.page-promotions-daily-rewards img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Ensure images fill their space without distortion */
    filter: none; /* Ensure no CSS filter is applied to images */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-promotions-daily-rewards__hero-title {
        font-size: 2.8em;
    }
    .page-promotions-daily-rewards__hero-description {
        font-size: 1.1em;
    }
    .page-promotions-daily-rewards__section-title {
        font-size: 2em;
    }
    .page-promotions-daily-rewards__cta-final-section .page-promotions-daily-rewards__section-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-promotions-daily-rewards {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-promotions-daily-rewards__hero-section {
        min-height: 400px;
        padding-bottom: 40px;
    }

    .page-promotions-daily-rewards__hero-title {
        font-size: 2.2em;
        margin-bottom: 15px;
    }

    .page-promotions-daily-rewards__hero-description {
        font-size: 1em;
        margin-bottom: 20px;
    }

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

    .page-promotions-daily-rewards__btn-primary,
    .page-promotions-daily-rewards__btn-secondary {
        width: 100% !important;
        padding: 12px 20px;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-promotions-daily-rewards__btn-center {
        width: 100% !important;
        min-width: unset;
    }

    .page-promotions-daily-rewards__section {
        padding: 40px 0;
    }

    .page-promotions-daily-rewards__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

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

    .page-promotions-daily-rewards__cta-final-section .page-promotions-daily-rewards__section-title {
        font-size: 2em;
    }

    .page-promotions-daily-rewards__text-block,
    .page-promotions-daily-rewards__list-item {
        font-size: 1em;
    }

    .page-promotions-daily-rewards__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-promotions-daily-rewards__card {
        padding: 20px;
    }

    /* Mobile image and video responsive rules */
    .page-promotions-daily-rewards img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        min-width: 200px !important; /* Enforce min-size for content images */
        min-height: 200px !important;
    }

    /* Video section padding-top for mobile */
    .page-promotions-daily-rewards__video-section {
        padding-top: var(--header-offset, 120px) !important;
    }
}