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

/* Base Styles for the page-promotions-daily-rebate */
.page-promotions-daily-rebate {
    font-family: 'Arial', sans-serif;
    color: #F8F8F8; /* Light text on dark background for readability */
    line-height: 1.6;
    background-color: #0A2463; /* Primary brand color as background */
}

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

/* Hero Section */
.page-promotions-daily-rebate__hero {
    background: linear-gradient(135deg, #0A2463, #1c4dc3); /* Blend primary with a darker blue */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-daily-rebate__hero-title {
    font-size: 3.5em;
    color: #E3B23C; /* Secondary brand color for emphasis */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-daily-rebate__hero-subtitle {
    font-size: 1.3em;
    color: #F8F8F8;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-promotions-daily-rebate__hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

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

.page-promotions-daily-rebate__button--primary {
    background-color: #E3B23C; /* Secondary brand color */
    color: #0A2463; /* Primary brand color for text */
}

.page-promotions-daily-rebate__button--primary:hover {
    background-color: #f5db9c; /* Lighter shade for hover */
    transform: translateY(-3px);
}

.page-promotions-daily-rebate__button--secondary {
    background-color: transparent;
    color: #E3B23C; /* Secondary brand color */
    border: 2px solid #E3B23C;
}

.page-promotions-daily-rebate__button--secondary:hover {
    background-color: #E3B23C;
    color: #0A2463;
    transform: translateY(-3px);
}

.page-promotions-daily-rebate__hero-image {
    max-width: 90%;
    height: auto;
    margin-top: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-promotions-daily-rebate__section {
    padding: 60px 0;
    background-color: #123270; /* Slightly lighter blue for contrast */
    margin-bottom: 20px;
}

.page-promotions-daily-rebate__section:nth-child(even) {
    background-color: #0A2463; /* Alternate sections with primary color */
}

.page-promotions-daily-rebate__section-title {
    font-size: 2.5em;
    color: #E3B23C; /* Secondary brand color */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-promotions-daily-rebate__text {
    font-size: 1.1em;
    color: #F8F8F8;
    margin-bottom: 20px;
    text-align: justify;
}

.page-promotions-daily-rebate__text--bold {
    font-weight: bold;
    text-align: center;
}

.page-promotions-daily-rebate__highlight {
    color: #E3B23C;
    font-weight: bold;
}

.page-promotions-daily-rebate__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-daily-rebate__image--center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* How It Works Section */
.page-promotions-daily-rebate__list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.page-promotions-daily-rebate__list li {
    background-color: #0A2463; /* Primary color */
    border-left: 5px solid #E3B23C;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-daily-rebate__list li h3 {
    color: #E3B23C;
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-promotions-daily-rebate__list li p {
    color: #F8F8F8;
    margin-bottom: 0;
}

.page-promotions-daily-rebate__image--large {
    max-width: 80%;
    display: block;
    margin: 40px auto;
}

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

.page-promotions-daily-rebate__grid-item {
    background-color: #0A2463; /* Primary color */
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-promotions-daily-rebate__grid-item:hover {
    transform: translateY(-5px);
}

.page-promotions-daily-rebate__grid-item h3 {
    color: #E3B23C;
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.page-promotions-daily-rebate__grid-item h3 i {
    font-size: 1.8em;
    color: #E3B23C;
}

.page-promotions-daily-rebate__grid-item p {
    color: #F8F8F8;
    font-size: 1em;
    margin-bottom: 15px;
}

.page-promotions-daily-rebate__grid-image {
    max-width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 20px;
}

.page-promotions-daily-rebate__text--note {
    font-size: 0.95em;
    color: #CCCCCC;
    text-align: center;
    margin-top: 40px;
}

/* How to Claim Section */
.page-promotions-daily-rebate__steps-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.page-promotions-daily-rebate__steps-list li {
    background-color: #123270; /* Slightly lighter blue */
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    position: relative;
    padding-left: 70px;
}

.page-promotions-daily-rebate__steps-list li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #E3B23C;
    color: #0A2463;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.5em;
}

.page-promotions-daily-rebate__steps-list li h4 {
    color: #E3B23C;
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-promotions-daily-rebate__steps-list li p {
    color: #F8F8F8;
    margin-bottom: 0;
}

.page-promotions-daily-rebate__inline-link {
    color: #E3B23C;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-promotions-daily-rebate__inline-link:hover {
    color: #f5db9c;
}

.page-promotions-daily-rebate__image--flow {
    max-width: 70%;
    display: block;
    margin: 40px auto;
}

/* Why Choose TK88 Section */
.page-promotions-daily-rebate__advantage-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.page-promotions-daily-rebate__advantage-list li {
    background-color: #0A2463;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    border-left: 4px solid #E3B23C;
}

.page-promotions-daily-rebate__advantage-list li strong {
    color: #E3B23C;
    font-size: 1.2em;
    display: block;
    margin-bottom: 10px;
}

.page-promotions-daily-rebate__advantage-list li p {
    color: #F8F8F8;
    margin-bottom: 0;
}

.page-promotions-daily-rebate__image--wide {
    max-width: 90%;
    display: block;
    margin: 40px auto;
}

/* FAQ Section */
.page-promotions-daily-rebate__faq-item {
    background-color: #0A2463;
    margin-bottom: 15px;
    border-radius: 8px;
    padding: 20px 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-promotions-daily-rebate__faq-item h3 {
    color: #E3B23C;
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-promotions-daily-rebate__faq-item h3::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-promotions-daily-rebate__faq-item.active h3::after {
    content: '-';
    transform: rotate(180deg);
}

.page-promotions-daily-rebate__faq-item p {
    color: #F8F8F8;
    font-size: 1em;
    margin-bottom: 0;
    display: none; /* Hidden by default, toggled by JS */
    padding-top: 10px;
    border-top: 1px solid rgba(227, 178, 60, 0.3);
    margin-top: 10px;
}

.page-promotions-daily-rebate__faq-item.active p {
    display: block;
}

/* Bottom CTA Section */
.page-promotions-daily-rebate__cta-bottom {
    background: linear-gradient(45deg, #1c4dc3, #0A2463); /* Darker blue gradient */
    padding: 80px 0;
    text-align: center;
    border-top: 5px solid #E3B23C;
}

.page-promotions-daily-rebate__cta-title {
    font-size: 3em;
    color: #E3B23C;
    margin-bottom: 25px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-promotions-daily-rebate__cta-text {
    font-size: 1.2em;
    color: #F8F8F8;
    max-width: 900px;
    margin: 0 auto 40px;
}

.page-promotions-daily-rebate__button--large {
    padding: 18px 40px;
    font-size: 1.3em;
    border-radius: 10px;
    background-color: #E3B23C;
    color: #0A2463;
}

.page-promotions-daily-rebate__button--large:hover {
    background-color: #f5db9c;
    transform: translateY(-5px);
}

.page-promotions-daily-rebate__cta-image {
    max-width: 80%;
    height: auto;
    margin-top: 50px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions-daily-rebate__hero-title {
        font-size: 2.8em;
    }
    .page-promotions-daily-rebate__section-title {
        font-size: 2em;
    }
    .page-promotions-daily-rebate__cta-title {
        font-size: 2.5em;
    }
    .page-promotions-daily-rebate__steps-list li {
        padding-left: 60px;
    }
    .page-promotions-daily-rebate__steps-list li::before {
        width: 35px;
        height: 35px;
        font-size: 1.3em;
        left: 15px;
    }
}

@media (max-width: 768px) {
    .page-promotions-daily-rebate__hero {
        padding: 80px 0;
    }
    .page-promotions-daily-rebate__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-daily-rebate__hero-subtitle {
        font-size: 1.1em;
    }
    .page-promotions-daily-rebate__hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    .page-promotions-daily-rebate__button {
        width: 80%;
        margin: 0 auto;
    }
    .page-promotions-daily-rebate__section {
        padding: 40px 0;
    }
    .page-promotions-daily-rebate__section-title {
        font-size: 1.8em;
    }
    .page-promotions-daily-rebate__text {
        font-size: 1em;
    }
    .page-promotions-daily-rebate__grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-daily-rebate__image--large, .page-promotions-daily-rebate__image--flow, .page-promotions-daily-rebate__image--wide {
        max-width: 100%;
    }
    .page-promotions-daily-rebate__cta-title {
        font-size: 2em;
    }
    .page-promotions-daily-rebate__button--large {
        width: 90%;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-promotions-daily-rebate__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-daily-rebate__hero-subtitle {
        font-size: 0.9em;
    }
    .page-promotions-daily-rebate__button {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-promotions-daily-rebate__section-title {
        font-size: 1.5em;
    }
    .page-promotions-daily-rebate__cta-title {
        font-size: 1.8em;
    }
    .page-promotions-daily-rebate__button--large {
        font-size: 1em;
        padding: 15px 30px;
    }
    .page-promotions-daily-rebate__steps-list li {
        padding-left: 50px;
    }
    .page-promotions-daily-rebate__steps-list li::before {
        width: 30px;
        height: 30px;
        font-size: 1.2em;
        left: 10px;
    }
}