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

.page-promotions-daily-deposit-rebate .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-promotions-daily-deposit-rebate__hero {
    background: linear-gradient(135deg, #0A2463 0%, #1A3B8C 100%); /* Dark blue gradient */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-daily-deposit-rebate__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,pattern,darkblue]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-promotions-daily-deposit-rebate__hero-content {
    position: relative;
    z-index: 1;
}

.page-promotions-daily-deposit-rebate__hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #E3B23C; /* Gold for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-daily-deposit-rebate__hero p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #ffffff;
}

.page-promotions-daily-deposit-rebate__section {
    padding: 60px 0;
}

.page-promotions-daily-deposit-rebate__section:nth-of-type(even) {
    background-color: #f9f9f9;
}

.page-promotions-daily-deposit-rebate__section h2 {
    font-size: 2.5em;
    color: #0A2463;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-promotions-daily-deposit-rebate__section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #E3B23C;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-promotions-daily-deposit-rebate__section h3 {
    font-size: 1.8em;
    color: #0A2463;
    margin-bottom: 15px;
}

.page-promotions-daily-deposit-rebate__section p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 20px;
}

.page-promotions-daily-deposit-rebate__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin: 10px;
}

.page-promotions-daily-deposit-rebate__btn--primary {
    background-color: #E3B23C;
    color: #0A2463;
    border: 2px solid #E3B23C;
}

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

.page-promotions-daily-deposit-rebate__btn--secondary {
    background-color: transparent;
    color: #E3B23C;
    border: 2px solid #E3B23C;
}

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

/* Mechanism Section */
.page-promotions-daily-deposit-rebate__features {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-promotions-daily-deposit-rebate__feature-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 5px solid #E3B23C;
}

.page-promotions-daily-deposit-rebate__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-promotions-daily-deposit-rebate__feature-item h3 {
    color: #0A2463;
    font-size: 1.5em;
}

.page-promotions-daily-deposit-rebate__feature-item p {
    color: #666;
    font-size: 1em;
}

/* Benefits Section */
.page-promotions-daily-deposit-rebate__section--benefits ul {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-promotions-daily-deposit-rebate__section--benefits ul li {
    background-color: #f0f5ff; /* Light blue background */
    border-left: 5px solid #0A2463;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 1.1em;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-promotions-daily-deposit-rebate__section--benefits ul li strong {
    color: #0A2463;
}

/* Guide Section */
.page-promotions-daily-deposit-rebate__steps {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
    margin-top: 50px;
}

.page-promotions-daily-deposit-rebate__steps li {
    position: relative;
    padding: 30px 0 30px 100px;
    margin-bottom: 40px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    min-height: 200px; /* Ensure enough space for content and image */
}

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

.page-promotions-daily-deposit-rebate__steps li h3 {
    color: #0A2463;
    font-size: 2em;
    margin-bottom: 10px;
}

.page-promotions-daily-deposit-rebate__steps li p {
    color: #555;
    font-size: 1.1em;
    margin-bottom: 15px;
}

.page-promotions-daily-deposit-rebate__step-img {
    max-width: 150px;
    height: auto;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Terms Section */
.page-promotions-daily-deposit-rebate__section--terms ul {
    list-style: disc;
    padding-left: 25px;
    margin-top: 30px;
}

.page-promotions-daily-deposit-rebate__section--terms ul li {
    margin-bottom: 10px;
    color: #555;
    font-size: 1.05em;
}

.page-promotions-daily-deposit-rebate__section--terms ul li strong {
    color: #0A2463;
}

/* Why gk88 Section */
.page-promotions-daily-deposit-rebate__advantages {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-promotions-daily-deposit-rebate__advantage-item {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border-bottom: 5px solid #0A2463;
}

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

.page-promotions-daily-deposit-rebate__advantage-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-promotions-daily-deposit-rebate__advantage-item h3 {
    color: #0A2463;
    font-size: 1.6em;
}

.page-promotions-daily-deposit-rebate__advantage-item p {
    color: #666;
    font-size: 1em;
}

.page-promotions-daily-deposit-rebate__cta-group {
    text-align: center;
    margin-top: 50px;
}

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

.page-promotions-daily-deposit-rebate__faq-item {
    background-color: #ffffff;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-promotions-daily-deposit-rebate__faq-question {
    padding: 20px 25px;
    font-size: 1.2em;
    color: #0A2463;
    cursor: pointer;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f0f5ff; /* Light blue background */
    border-bottom: 1px solid #e0e0e0;
}

.page-promotions-daily-deposit-rebate__faq-question::after {
    content: '+';
    font-size: 1.5em;
    font-weight: bold;
    color: #E3B23C;
    transition: transform 0.3s ease;
}

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

.page-promotions-daily-deposit-rebate__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    background-color: #ffffff;
}

.page-promotions-daily-deposit-rebate__faq-answer.active {
    max-height: 200px; /* Adjust based on content */
    padding: 20px 25px;
}

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

/* Call to action bottom */
.page-promotions-daily-deposit-rebate__section--cta-bottom {
    background-color: #0A2463;
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
}

.page-promotions-daily-deposit-rebate__section--cta-bottom h2 {
    color: #E3B23C;
}

.page-promotions-daily-deposit-rebate__section--cta-bottom h2::after {
    background-color: #E3B23C;
}

.page-promotions-daily-deposit-rebate__section--cta-bottom p {
    color: #ffffff;
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-daily-deposit-rebate__hero h1 {
        font-size: 2.8em;
    }

    .page-promotions-daily-deposit-rebate__section h2 {
        font-size: 2em;
    }

    .page-promotions-daily-deposit-rebate__features,
    .page-promotions-daily-deposit-rebate__advantages {
        flex-direction: column;
        align-items: center;
    }

    .page-promotions-daily-deposit-rebate__feature-item,
    .page-promotions-daily-deposit-rebate__advantage-item {
        max-width: 80%;
    }

    .page-promotions-daily-deposit-rebate__steps li {
        padding: 20px 0 20px 80px;
        min-height: 180px;
    }

    .page-promotions-daily-deposit-rebate__steps li::before {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
        left: 15px;
    }
}

@media (max-width: 768px) {
    .page-promotions-daily-deposit-rebate__hero h1 {
        font-size: 2.2em;
    }

    .page-promotions-daily-deposit-rebate__hero p {
        font-size: 1em;
    }

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

    .page-promotions-daily-deposit-rebate__section h2 {
        font-size: 1.8em;
    }

    .page-promotions-daily-deposit-rebate__section h3 {
        font-size: 1.5em;
    }

    .page-promotions-daily-deposit-rebate__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-promotions-daily-deposit-rebate__steps li {
        padding: 15px 15px 15px 70px;
        min-height: 150px;
    }

    .page-promotions-daily-deposit-rebate__steps li::before {
        width: 40px;
        height: 40px;
        font-size: 1.5em;
        left: 10px;
    }
    .page-promotions-daily-deposit-rebate__step-img {
        max-width: 100px;
    }

    .page-promotions-daily-deposit-rebate__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-promotions-daily-deposit-rebate__faq-answer.active {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-promotions-daily-deposit-rebate__hero h1 {
        font-size: 1.8em;
    }
    .page-promotions-daily-deposit-rebate__btn {
        display: block;
        margin: 10px auto;
        width: fit-content;
    }
    .page-promotions-daily-deposit-rebate__steps li {
        padding: 10px 10px 10px 60px;
        min-height: 120px;
    }
    .page-promotions-daily-deposit-rebate__steps li::before {
        width: 35px;
        height: 35px;
        font-size: 1.2em;
        left: 8px;
    }
    .page-promotions-daily-deposit-rebate__step-img {
        max-width: 80px;
    }
}