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

.page-promotions-deposit-bonuses__hero-section {
    position: relative;
    background: linear-gradient(135deg, #003366 0%, #004080 100%); /* Dark blue gradient */
    color: #fff;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    min-height: 450px;
    overflow: hidden;
    text-align: center;
}

.page-promotions-deposit-bonuses__hero-content {
    max-width: 700px;
    z-index: 1;
}

.page-promotions-deposit-bonuses__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold accent */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: bold;
}

.page-promotions-deposit-bonuses__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-promotions-deposit-bonuses__hero-btn {
    display: inline-block;
    background-color: #FFD700; /* Gold */
    color: #003366; /* Dark blue text */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-promotions-deposit-bonuses__hero-btn:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-3px);
}

.page-promotions-deposit-bonuses__hero-image-wrapper {
    position: absolute;
    right: -100px; /* Adjust as needed */
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.2;
    z-index: 0;
}

.page-promotions-deposit-bonuses__hero-image {
    max-width: 600px;
    height: auto;
    border-radius: 10px;
}

.page-promotions-deposit-bonuses__section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.page-promotions-deposit-bonuses__section-title {
    font-size: 2.5em;
    color: #003366;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.page-promotions-deposit-bonuses__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-deposit-bonuses__section-intro {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-deposit-bonuses__why-tk88 .page-promotions-deposit-bonuses__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

.page-promotions-deposit-bonuses__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

.page-promotions-deposit-bonuses__feature-title {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-deposit-bonuses__feature-text {
    color: #666;
    font-size: 1em;
}

.page-promotions-deposit-bonuses__bonus-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-deposit-bonuses__bonus-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-promotions-deposit-bonuses__bonus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions-deposit-bonuses__card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 3px solid #FFD700;
}

.page-promotions-deposit-bonuses__bonus-card h3 {
    font-size: 1.6em;
    color: #003366;
    padding: 20px 25px 10px;
    font-weight: bold;
}

.page-promotions-deposit-bonuses__bonus-card p {
    color: #555;
    padding: 0 25px 15px;
    flex-grow: 1;
}

.page-promotions-deposit-bonuses__card-features {
    list-style: none;
    padding: 0 25px 15px;
    margin: 0;
}

.page-promotions-deposit-bonuses__card-features li {
    color: #444;
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

.page-promotions-deposit-bonuses__card-features li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #32CD32; /* Lime green for checkmark */
}

.page-promotions-deposit-bonuses__card-btn {
    display: block;
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    background-color: #003366; /* Dark blue */
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-promotions-deposit-bonuses__card-btn:hover {
    background-color: #004d99; /* Lighter blue */
}

.page-promotions-deposit-bonuses__how-to-claim {
    background-color: #eef4f8;
    padding: 60px 20px;
    border-radius: 15px;
    box-shadow: inset 0 0 15px rgba(0, 51, 102, 0.1);
}

.page-promotions-deposit-bonuses__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-deposit-bonuses__step-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    padding-top: 60px;
}

.page-promotions-deposit-bonuses__step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFD700; /* Gold */
    color: #003366; /* Dark blue */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    border: 5px solid #003366;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-deposit-bonuses__step-title {
    font-size: 1.4em;
    color: #003366;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions-deposit-bonuses__step-text {
    color: #666;
}

.page-promotions-deposit-bonuses__step-text a {
    color: #003366;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions-deposit-bonuses__step-text a:hover {
    text-decoration: underline;
}

.page-promotions-deposit-bonuses__process-image {
    width: 100%;
    max-width: 800px;
    margin-top: 50px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions-deposit-bonuses__terms-conditions {
    background-color: #fff;
    padding: 60px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.page-promotions-deposit-bonuses__terms-conditions .page-promotions-deposit-bonuses__section-title {
    text-align: center;
}

.page-promotions-deposit-bonuses__terms-conditions .page-promotions-deposit-bonuses__section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.page-promotions-deposit-bonuses__terms-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-promotions-deposit-bonuses__terms-list li {
    background-color: #f9f9f9;
    border-left: 5px solid #003366;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    line-height: 1.8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-promotions-deposit-bonuses__terms-highlight {
    color: #003366;
    font-weight: bold;
}

.page-promotions-deposit-bonuses__terms-cta {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1em;
    color: #555;
}

.page-promotions-deposit-bonuses__terms-cta a {
    color: #003366;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions-deposit-bonuses__terms-cta a:hover {
    text-decoration: underline;
}

.page-promotions-deposit-bonuses__faq {
    background-color: #eef4f8;
    padding: 60px 20px;
    border-radius: 15px;
    box-shadow: inset 0 0 15px rgba(0, 51, 102, 0.1);
    text-align: left;
}

.page-promotions-deposit-bonuses__faq .page-promotions-deposit-bonuses__section-title {
    text-align: center;
}

.page-promotions-deposit-bonuses__faq .page-promotions-deposit-bonuses__section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.page-promotions-deposit-bonuses__faq-item {
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease;
}

.page-promotions-deposit-bonuses__faq-item:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.page-promotions-deposit-bonuses__faq-question {
    font-size: 1.3em;
    color: #003366;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
    font-weight: bold;
}

.page-promotions-deposit-bonuses__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-promotions-deposit-bonuses__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(0deg);
}

.page-promotions-deposit-bonuses__faq-answer {
    font-size: 1em;
    color: #555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding: 0 0 0px 0;
}

.page-promotions-deposit-bonuses__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding: 10px 0 0px 0;
}

.page-promotions-deposit-bonuses__cta {
    background: linear-gradient(90deg, #003366, #004d99);
    color: #fff;
    padding: 80px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-promotions-deposit-bonuses__cta .page-promotions-deposit-bonuses__section-title {
    color: #FFD700;
    font-size: 2.8em;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-promotions-deposit-bonuses__cta .page-promotions-deposit-bonuses__section-title::after {
    background-color: #FFD700;
}

.page-promotions-deposit-bonuses__cta .page-promotions-deposit-bonuses__section-intro {
    color: #e0e0e0;
    font-size: 1.2em;
    max-width: 800px;
    margin: 20px auto 40px;
}

.page-promotions-deposit-bonuses__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-promotions-deposit-bonuses__cta-btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.page-promotions-deposit-bonuses__cta-btn--primary {
    background-color: #FFD700; /* Gold */
    color: #003366; /* Dark blue */
    border-color: #FFD700;
}

.page-promotions-deposit-bonuses__cta-btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-3px) scale(1.02);
}

.page-promotions-deposit-bonuses__cta-btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold */
    border-color: #FFD700;
}

.page-promotions-deposit-bonuses__cta-btn--secondary:hover {
    background-color: #FFD700;
    color: #003366;
    transform: translateY(-3px) scale(1.02);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-deposit-bonuses__hero-section {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
        min-height: unset;
    }

    .page-promotions-deposit-bonuses__hero-image-wrapper {
        position: static;
        transform: none;
        margin-top: 40px;
        opacity: 0.3;
    }

    .page-promotions-deposit-bonuses__hero-image {
        max-width: 100%;
    }

    .page-promotions-deposit-bonuses__hero-title {
        font-size: 2.5em;
    }

    .page-promotions-deposit-bonuses__section-title {
        font-size: 2em;
    }

    .page-promotions-deposit-bonuses__cta .page-promotions-deposit-bonuses__section-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-promotions-deposit-bonuses__hero-title {
        font-size: 2em;
    }

    .page-promotions-deposit-bonuses__hero-description {
        font-size: 1em;
    }

    .page-promotions-deposit-bonuses__section {
        margin: 40px auto;
    }

    .page-promotions-deposit-bonuses__section-title {
        font-size: 1.8em;
    }

    .page-promotions-deposit-bonuses__feature-item,
    .page-promotions-deposit-bonuses__bonus-card {
        padding: 25px;
    }

    .page-promotions-deposit-bonuses__card-image {
        height: 180px;
    }

    .page-promotions-deposit-bonuses__bonus-card h3 {
        font-size: 1.4em;
    }

    .page-promotions-deposit-bonuses__steps-grid {
        grid-template-columns: 1fr;
    }

    .page-promotions-deposit-bonuses__step-item {
        padding-top: 50px;
    }

    .page-promotions-deposit-bonuses__step-number {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
        top: -15px;
    }

    .page-promotions-deposit-bonuses__process-image {
        margin-top: 30px;
    }

    .page-promotions-deposit-bonuses__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-promotions-deposit-bonuses__cta-btn {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
    }
}

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

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

    .page-promotions-deposit-bonuses__section-title {
        font-size: 1.5em;
    }

    .page-promotions-deposit-bonuses__section-intro {
        font-size: 0.95em;
    }

    .page-promotions-deposit-bonuses__feature-item,
    .page-promotions-deposit-bonuses__bonus-card,
    .page-promotions-deposit-bonuses__faq-item {
        padding: 20px;
    }

    .page-promotions-deposit-bonuses__card-image {
        height: 150px;
    }

    .page-promotions-deposit-bonuses__bonus-card h3 {
        font-size: 1.2em;
    }

    .page-promotions-deposit-bonuses__faq-question {
        font-size: 1.1em;
    }

    .page-promotions-deposit-bonuses__cta .page-promotions-deposit-bonuses__section-title {
        font-size: 1.8em;
    }

    .page-promotions-deposit-bonuses__cta-btn {
        width: 90%;
    }
}