/* style/promotions-daily-checkin-rewards.css */
.page-promotions-daily-checkin-rewards {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

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

.page-promotions-daily-checkin-rewards__hero-section {
    background: linear-gradient(135deg, #007bff, #4da3ff); /* Adjusted for better contrast */
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 50% 20px;
    border-bottom-right-radius: 50% 20px;
}

.page-promotions-daily-checkin-rewards__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:ocean,waves,fish,abstract]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-promotions-daily-checkin-rewards__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    color: #fff;
}

.page-promotions-daily-checkin-rewards__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    color: #e0f2ff;
}

.page-promotions-daily-checkin-rewards__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.page-promotions-daily-checkin-rewards__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
}

.page-promotions-daily-checkin-rewards__btn--primary {
    background-color: #ffc107; /* Auxiliary color for primary action */
    color: #0056b3; /* Darker blue for text on yellow background */
    border: 2px solid #ffc107;
}

.page-promotions-daily-checkin-rewards__btn--primary:hover {
    background-color: #e0a800;
    color: #003d80;
    transform: translateY(-3px);
}

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

.page-promotions-daily-checkin-rewards__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.page-promotions-daily-checkin-rewards__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-promotions-daily-checkin-rewards__btn--centered {
    display: block;
    margin: 40px auto 0 auto;
    width: fit-content;
}

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

.page-promotions-daily-checkin-rewards__section:nth-of-type(even) {
    background-color: #f0f2f5;
}

.page-promotions-daily-checkin-rewards__section-title {
    font-size: 2.5em;
    color: #0056b3; /* Darker primary color for titles */
    text-align: center;
    margin-bottom: 50px;
    font-weight: bold;
}

.page-promotions-daily-checkin-rewards__description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #555;
}

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

.page-promotions-daily-checkin-rewards__benefit-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-daily-checkin-rewards__benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-promotions-daily-checkin-rewards__benefit-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.1));
}

.page-promotions-daily-checkin-rewards__benefit-item h3 {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 15px;
}

.page-promotions-daily-checkin-rewards__benefit-item p {
    color: #666;
}

.page-promotions-daily-checkin-rewards__steps {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    margin: 60px auto;
    max-width: 800px;
}

.page-promotions-daily-checkin-rewards__steps li {
    background-color: #fff;
    margin-bottom: 25px;
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    position: relative;
}

.page-promotions-daily-checkin-rewards__steps li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    background-color: #007bff;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4em;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0, 123, 255, 0.4);
}

.page-promotions-daily-checkin-rewards__steps li h3 {
    font-size: 1.3em;
    color: #007bff;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-promotions-daily-checkin-rewards__steps li p {
    margin: 0;
    color: #555;
}

.page-promotions-daily-checkin-rewards__steps li a {
    color: #ffc107;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions-daily-checkin-rewards__steps li a:hover {
    text-decoration: underline;
}

.page-promotions-daily-checkin-rewards__calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.page-promotions-daily-checkin-rewards__calendar-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
    border-top: 5px solid #ffc107;
}

.page-promotions-daily-checkin-rewards__calendar-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.1));
}

.page-promotions-daily-checkin-rewards__calendar-item h4 {
    font-size: 1.6em;
    color: #0056b3;
    margin-bottom: 10px;
}

.page-promotions-daily-checkin-rewards__calendar-item p {
    color: #666;
    font-size: 0.95em;
}

.page-promotions-daily-checkin-rewards__note {
    text-align: center;
    font-style: italic;
    color: #777;
    margin-top: 40px;
    font-size: 0.9em;
}

.page-promotions-daily-checkin-rewards__list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 40px auto;
}

.page-promotions-daily-checkin-rewards__list li {
    background-color: #fff;
    padding: 20px 30px;
    margin-bottom: 15px;
    border-left: 5px solid #007bff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions-daily-checkin-rewards__list li strong {
    color: #007bff;
    font-size: 1.1em;
}

.page-promotions-daily-checkin-rewards__list li p {
    margin-top: 10px;
    color: #555;
}

.page-promotions-daily-checkin-rewards__image--full-width {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 50px auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions-daily-checkin-rewards__cta-actions {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 50px;
}

.page-promotions-daily-checkin-rewards__faq-item {
    background-color: #fff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #ffc107; /* Highlight with auxiliary color */
}

.page-promotions-daily-checkin-rewards__faq-item h3 {
    color: #007bff;
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-promotions-daily-checkin-rewards__faq-item p {
    color: #444;
    margin-bottom: 0;
}

.page-promotions-daily-checkin-rewards__floating-ad {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 180px;
    background-color: rgba(0, 123, 255, 0.95); /* Semi-transparent primary color */
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    text-align: center;
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-daily-checkin-rewards__floating-ad:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions-daily-checkin-rewards__floating-ad a {
    text-decoration: none;
    color: #fff;
    display: block;
}

.page-promotions-daily-checkin-rewards__floating-ad-img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
    border: 2px solid #ffc107; /* Highlight with auxiliary color */
}

.page-promotions-daily-checkin-rewards__floating-ad p {
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
}

.page-promotions-daily-checkin-rewards__floating-ad-btn {
    display: inline-block;
    background-color: #ffc107;
    color: #0056b3;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
}

.page-promotions-daily-checkin-rewards__floating-ad-btn:hover {
    background-color: #e0a800;
}

.page-promotions-daily-checkin-rewards .highlight {
    color: #007bff;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-daily-checkin-rewards__hero-title {
        font-size: 2.8em;
    }
    .page-promotions-daily-checkin-rewards__hero-subtitle {
        font-size: 1.2em;
    }
    .page-promotions-daily-checkin-rewards__section-title {
        font-size: 2em;
    }
    .page-promotions-daily-checkin-rewards__grid,
    .page-promotions-daily-checkin-rewards__calendar-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-promotions-daily-checkin-rewards__cta-actions {
        flex-direction: column;
        align-items: center;
    }
    .page-promotions-daily-checkin-rewards__btn--large {
        width: 80%;
    }
}

@media (max-width: 768px) {
    .page-promotions-daily-checkin-rewards__hero-section {
        padding: 80px 0;
    }
    .page-promotions-daily-checkin-rewards__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-daily-checkin-rewards__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions-daily-checkin-rewards__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-promotions-daily-checkin-rewards__btn {
        width: 80%;
        margin: 0 auto;
    }
    .page-promotions-daily-checkin-rewards__section {
        padding: 60px 0;
    }
    .page-promotions-daily-checkin-rewards__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-promotions-daily-checkin-rewards__steps li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .page-promotions-daily-checkin-rewards__steps li::before {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .page-promotions-daily-checkin-rewards__floating-ad {
        width: 150px;
        bottom: 15px;
        right: 15px;
        padding: 10px;
    }
    .page-promotions-daily-checkin-rewards__floating-ad p {
        font-size: 0.9em;
    }
    .page-promotions-daily-checkin-rewards__floating-ad-btn {
        padding: 6px 12px;
        font-size: 0.8em;
    }
}

@media (max-width: 480px) {
    .page-promotions-daily-checkin-rewards__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-daily-checkin-rewards__hero-subtitle {
        font-size: 0.9em;
    }
    .page-promotions-daily-checkin-rewards__btn {
        font-size: 1em;
        padding: 12px 20px;
    }
    .page-promotions-daily-checkin-rewards__section-title {
        font-size: 1.5em;
    }
    .page-promotions-daily-checkin-rewards__description {
        font-size: 0.9em;
    }
}