.page-promotions-daily-rewards {
    color: #ffffff; /* Default text color for dark body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: var(--dark-bg-1); /* Inherits from shared.css */
}

.page-promotions-daily-rewards__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-promotions-daily-rewards__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for main titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-promotions-daily-rewards__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-promotions-daily-rewards__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #f0f0f0; /* Slightly off-white for body text */
}

.page-promotions-daily-rewards__highlight {
    color: #FFD700;
    font-weight: bold;
}

.page-promotions-daily-rewards__keyword {
    color: #FFD700;
    font-weight: bold;
}

/* Hero Section */
.page-promotions-daily-rewards__hero-section {
    position: relative;
    width: 100%;
    height: 600px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-promotions-daily-rewards__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-promotions-daily-rewards__hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    max-width: 800px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
    border-radius: 10px;
}

.page-promotions-daily-rewards__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.page-promotions-daily-rewards__cta-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-promotions-daily-rewards__btn-primary {
    background-color: #FFD700; /* Gold */
    color: #1A2E44; /* Dark Blue */
}

.page-promotions-daily-rewards__btn-primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

/* General Section Styles */
.page-promotions-daily-rewards__about-section,
.page-promotions-daily-rewards__types-of-rewards-section,
.page-promotions-daily-rewards__benefits-section,
.page-promotions-daily-rewards__cta-section {
    padding: 80px 0;
    background-color: #1A2E44; /* Dark blue background for these sections */
    color: #ffffff;
}

.page-promotions-daily-rewards__how-to-participate-section,
.page-promotions-daily-rewards__vip-section,
.page-promotions-daily-rewards__faq-section {
    padding: 80px 0;
    background-color: #0d1e33; /* Slightly darker background for contrast */
    color: #ffffff;
}

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

/* How to Participate List */
.page-promotions-daily-rewards__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-promotions-daily-rewards__list-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 8px;
    border-left: 5px solid #FFD700;
    transition: background-color 0.3s ease;
}

.page-promotions-daily-rewards__list-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-promotions-daily-rewards__step-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-promotions-daily-rewards__step-title a {
    color: #FFD700;
    text-decoration: none;
}

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

.page-promotions-daily-rewards__list-item p {
    color: #f0f0f0;
}

/* Cards Grid */
.page-promotions-daily-rewards__cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-daily-rewards__card {
    background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent light background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #ffffff; /* Light text for card content */
}

.page-promotions-daily-rewards__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-promotions-daily-rewards__card-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-promotions-daily-rewards__card-title a {
    color: #FFD700;
    text-decoration: none;
}

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

.page-promotions-daily-rewards__card p {
    color: #e0e0e0;
}

/* VIP Benefits List */
.page-promotions-daily-rewards__vip-benefits-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-promotions-daily-rewards__vip-benefits-list .page-promotions-daily-rewards__list-item {
    background-color: rgba(255, 255, 255, 0.05);
    margin-bottom: 15px;
    border-left: 5px solid #FFD700;
    padding: 20px;
    border-radius: 8px;
}

.page-promotions-daily-rewards__vip-benefits-list .page-promotions-daily-rewards__list-item strong {
    color: #FFD700;
    font-size: 1.1em;
}

/* Benefits Section List */
.page-promotions-daily-rewards__benefits-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.page-promotions-daily-rewards__benefits-list .page-promotions-daily-rewards__list-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 8px;
    border-left: 5px solid #FFD700;
    transition: background-color 0.3s ease;
}

.page-promotions-daily-rewards__benefits-list .page-promotions-daily-rewards__list-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-promotions-daily-rewards__benefits-list .page-promotions-daily-rewards__list-item strong {
    color: #FFD700;
    font-size: 1.2em;
    display: block;
    margin-bottom: 10px;
}

/* FAQ Section */
.page-promotions-daily-rewards__faq-list {
    margin-top: 40px;
}

.page-promotions-daily-rewards__faq-item {
    background-color: rgba(255, 255, 255, 0.08);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-promotions-daily-rewards__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: #1A2E44;
    color: #FFD700;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

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

.page-promotions-daily-rewards__faq-question h3 {
    margin: 0;
    font-size: 1em; /* Adjust to fit the parent font size */
    color: inherit;
}

.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;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: rgba(255, 255, 255, 0.05);
    color: #e0e0e0;
}

.page-promotions-daily-rewards__faq-item.active .page-promotions-daily-rewards__faq-answer {
    max-height: 1000px !important; /* Important for JS to override */
    padding: 20px 25px;
}

.page-promotions-daily-rewards__faq-answer p {
    margin: 0;
    color: #e0e0e0;
}

/* Links within content */
.page-promotions-daily-rewards a {
    color: #FFD700;
    text-decoration: none;
}

.page-promotions-daily-rewards a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@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__cards-grid,
    .page-promotions-daily-rewards__steps-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

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

    .page-promotions-daily-rewards__hero-section {
        height: 500px;
        padding-top: var(--header-offset, 120px) !important; /* Ensure mobile hero is not hidden */
    }

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

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

    .page-promotions-daily-rewards__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

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

    .page-promotions-daily-rewards__about-section,
    .page-promotions-daily-rewards__how-to-participate-section,
    .page-promotions-daily-rewards__types-of-rewards-section,
    .page-promotions-daily-rewards__vip-section,
    .page-promotions-daily-rewards__benefits-section,
    .page-promotions-daily-rewards__faq-section,
    .page-promotions-daily-rewards__cta-section {
        padding: 40px 0;
    }

    .page-promotions-daily-rewards__container {
        padding: 0 15px;
    }

    .page-promotions-daily-rewards__cards-grid,
    .page-promotions-daily-rewards__steps-list,
    .page-promotions-daily-rewards__benefits-list {
        grid-template-columns: 1fr; /* Single column layout */
        gap: 20px;
    }
    
    .page-promotions-daily-rewards img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-promotions-daily-rewards__section,
    .page-promotions-daily-rewards__card,
    .page-promotions-daily-rewards__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* FAQ specific mobile adjustments */
    .page-promotions-daily-rewards__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-promotions-daily-rewards__faq-answer {
        padding: 15px 20px;
    }
}