/* style/promotions-k88-first-deposit.css */

:root {
    --k88-primary-blue: #0A2463;
    --k88-secondary-gold: #FFD700;
    --k88-light-text: #E0E0E0;
    --k88-dark-text: #1A1A1A;
    --k88-background-light: #F8F8F8;
    --k88-background-dark: #071C40;
    --k88-border-color: #334D80;
}

.page-promotions-k88-first-deposit {
    font-family: 'Arial', sans-serif;
    color: var(--k88-dark-text);
    line-height: 1.6;
}

.page-promotions-k88-first-deposit__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-promotions-k88-first-deposit__hero-section {
    background: linear-gradient(135deg, var(--k88-primary-blue) 0%, var(--k88-background-dark) 100%);
    color: var(--k88-light-text);
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-k88-first-deposit__hero-content {
    z-index: 10;
    max-width: 900px;
}

.page-promotions-k88-first-deposit__main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--k88-secondary-gold);
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-k88-first-deposit__subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 700px;
    opacity: 0.9;
}

.page-promotions-k88-first-deposit__hero-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    max-width: 800px;
    height: auto;
    opacity: 0.3;
    z-index: 5;
    filter: grayscale(50%) blur(3px);
    pointer-events: none;
}

/* Content Section */
.page-promotions-k88-first-deposit__content-section {
    padding: 60px 0;
    background-color: var(--k88-background-light);
}

.page-promotions-k88-first-deposit__section-title {
    font-size: 2.5em;
    color: var(--k88-primary-blue);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.page-promotions-k88-first-deposit__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--k88-secondary-gold);
    border-radius: 2px;
}

.page-promotions-k88-first-deposit__sub-section-title {
    font-size: 1.8em;
    color: var(--k88-primary-blue);
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid var(--k88-secondary-gold);
    padding-left: 15px;
}

.page-promotions-k88-first-deposit__content-section p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: var(--k88-dark-text);
}

.page-promotions-k88-first-deposit__list,
.page-promotions-k88-first-deposit__numbered-list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
}

.page-promotions-k88-first-deposit__numbered-list {
    list-style-type: decimal;
}

.page-promotions-k88-first-deposit__list li,
.page-promotions-k88-first-deposit__numbered-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: var(--k88-dark-text);
}

.page-promotions-k88-first-deposit__list li strong {
    color: var(--k88-primary-blue);
}

.page-promotions-k88-first-deposit__image-inline {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Call to Action Buttons */
.page-promotions-k88-first-deposit__cta-button {
    display: inline-block;
    background-color: var(--k88-secondary-gold);
    color: var(--k88-primary-blue);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: 2px solid var(--k88-secondary-gold);
    margin: 10px;
}

.page-promotions-k88-first-deposit__cta-button:hover {
    background-color: #E6BB00;
    transform: translateY(-3px);
}

.page-promotions-k88-first-deposit__cta-button--secondary {
    background-color: transparent;
    color: var(--k88-primary-blue);
    border: 2px solid var(--k88-primary-blue);
}

.page-promotions-k88-first-deposit__cta-button--secondary:hover {
    background-color: var(--k88-primary-blue);
    color: var(--k88-light-text);
}

.page-promotions-k88-first-deposit__cta-button--small {
    padding: 10px 20px;
    font-size: 1em;
}

.page-promotions-k88-first-deposit__cta-button--large {
    padding: 18px 35px;
    font-size: 1.3em;
}

.page-promotions-k88-first-deposit__cta-button--outline {
    background-color: transparent;
    color: var(--k88-secondary-gold);
    border: 2px solid var(--k88-secondary-gold);
}

.page-promotions-k88-first-deposit__cta-button--outline:hover {
    background-color: var(--k88-secondary-gold);
    color: var(--k88-primary-blue);
}

.page-promotions-k88-first-deposit__button-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
    margin-bottom: 30px;
}

/* Feature Grid */
.page-promotions-k88-first-deposit__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-promotions-k88-first-deposit__feature-item {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid var(--k88-primary-blue);
}

.page-promotions-k88-first-deposit__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions-k88-first-deposit__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.2));
}

.page-promotions-k88-first-deposit__feature-title {
    font-size: 1.5em;
    color: var(--k88-primary-blue);
    margin-bottom: 15px;
}

.page-promotions-k88-first-deposit__feature-item p {
    font-size: 1em;
    color: var(--k88-dark-text);
}

/* FAQ Section */
.page-promotions-k88-first-deposit__faq-container {
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-promotions-k88-first-deposit__faq-item {
    background-color: #FFFFFF;
    border: 1px solid var(--k88-border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions-k88-first-deposit__faq-question {
    font-size: 1.3em;
    color: var(--k88-primary-blue);
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-promotions-k88-first-deposit__faq-question::after {
    content: '+';
    font-size: 1.2em;
    color: var(--k88-secondary-gold);
    transition: transform 0.3s ease;
}

.page-promotions-k88-first-deposit__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-promotions-k88-first-deposit__faq-answer {
    font-size: 1.1em;
    color: var(--k88-dark-text);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding-top: 0;
}

.page-promotions-k88-first-deposit__faq-answer.open {
    max-height: 200px; /* Adjust as needed */
    padding-top: 10px;
}

/* Final Call to Action Section */
.page-promotions-k88-first-deposit__call-to-action {
    background-color: var(--k88-primary-blue);
    color: var(--k88-light-text);
    padding: 60px 20px;
    text-align: center;
}

.page-promotions-k88-first-deposit__call-to-action .page-promotions-k88-first-deposit__section-title {
    color: var(--k88-secondary-gold);
}

.page-promotions-k88-first-deposit__call-to-action .page-promotions-k88-first-deposit__section-title::after {
    background-color: var(--k88-light-text);
}

.page-promotions-k88-first-deposit__call-to-action p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: var(--k88-light-text);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-k88-first-deposit__hero-section {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
    }

    .page-promotions-k88-first-deposit__hero-image {
        position: static;
        width: 80%;
        max-width: 500px;
        margin-top: 30px;
        opacity: 0.5;
    }

    .page-promotions-k88-first-deposit__main-title {
        font-size: 2.8em;
    }

    .page-promotions-k88-first-deposit__subtitle {
        font-size: 1.3em;
    }

    .page-promotions-k88-first-deposit__section-title {
        font-size: 2em;
    }

    .page-promotions-k88-first-deposit__sub-section-title {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .page-promotions-k88-first-deposit__hero-section {
        padding: 40px 15px;
    }

    .page-promotions-k88-first-deposit__main-title {
        font-size: 2.2em;
    }

    .page-promotions-k88-first-deposit__subtitle {
        font-size: 1.1em;
    }

    .page-promotions-k88-first-deposit__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
    }

    .page-promotions-k88-first-deposit__section-title {
        font-size: 1.8em;
    }

    .page-promotions-k88-first-deposit__sub-section-title {
        font-size: 1.4em;
    }

    .page-promotions-k88-first-deposit__content-section p,
    .page-promotions-k88-first-deposit__list li,
    .page-promotions-k88-first-deposit__numbered-list li {
        font-size: 1em;
    }

    .page-promotions-k88-first-deposit__feature-grid {
        grid-template-columns: 1fr;
    }

    .page-promotions-k88-first-deposit__faq-question {
        font-size: 1.2em;
    }

    .page-promotions-k88-first-deposit__faq-answer {
        font-size: 1em;
    }

    .page-promotions-k88-first-deposit__button-group {
        flex-direction: column;
        align-items: center;
    }

    .page-promotions-k88-first-deposit__cta-button--large {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-promotions-k88-first-deposit__main-title {
        font-size: 1.8em;
    }

    .page-promotions-k88-first-deposit__subtitle {
        font-size: 0.9em;
    }

    .page-promotions-k88-first-deposit__cta-button {
        font-size: 1em;
        padding: 10px 20px;
    }

    .page-promotions-k88-first-deposit__section-title {
        font-size: 1.6em;
    }

    .page-promotions-k88-first-deposit__sub-section-title {
        font-size: 1.2em;
    }

    .page-promotions-k88-first-deposit__faq-question {
        font-size: 1.1em;
    }
}