.ltp-sticky-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999999;
    padding: 16px 60px 16px 20px;
    animation: ltp-gradient-animation 15s ease infinite;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@keyframes ltp-gradient-animation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.ltp-sticky-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ltp-message {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    flex: 1 1 auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.ltp-cta {
    flex: 0 0 auto;
}

.ltp-cta-button {
    display: inline-block;
    padding: 10px 24px;
    background-color: #ffffff;
    color: #333333;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.ltp-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: #333333;
    text-decoration: none;
}

.ltp-cta-button-no-link {
    cursor: default;
}

.ltp-cta-button-no-link:hover {
    transform: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.ltp-close-button {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffffff;
    transition: all 0.3s ease;
    padding: 0;
}

.ltp-close-button:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-50%) scale(1.15);
}

.ltp-close-button svg {
    display: block;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

/* Responsive Design */
@media (max-width: 768px) {
    .ltp-sticky-bar {
        padding: 16px 50px 16px 20px;
    }

    .ltp-sticky-bar-content {
        gap: 16px;
        flex-direction: column;
    }

    .ltp-message {
        font-size: 14px;
        flex: 1 1 100%;
        line-height: 1.5;
    }

    .ltp-cta {
        flex: 1 1 100%;
        text-align: center;
    }

    .ltp-cta-button {
        padding: 10px 24px;
        font-size: 13px;
    }

    .ltp-close-button {
        right: 10px;
        width: 28px;
        height: 28px;
    }
}

/* Fade out animation */
@keyframes ltp-fade-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

.ltp-sticky-bar.ltp-dismissing {
    animation: ltp-fade-out 0.3s ease forwards;
}

/* Push body content down */
body.ltp-bar-active {
    padding-top: 70px;
}

@media (max-width: 768px) {
    body.ltp-bar-active {
        padding-top: 100px;
    }
}