#my-top-marquee {
    width: 100%;
    background: linear-gradient(to right, #222, #000, #222);
    color: #fff;
    text-align: center;
    padding: 12px 0;
    overflow: hidden;
    position: relative;
    z-index: 999;
    white-space: nowrap;
    box-sizing: border-box;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
    height: auto;
    min-height: 45px;
}

#my-top-marquee.has-admin-bar {
    top: 0;
    margin-top: 0;
}

#my-top-marquee span {
    display: none;
    padding: 0 30px;
    letter-spacing: 0.5px;
    font-size: 16px;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    will-change: opacity, transform;
}

#my-top-marquee span.active {
    display: inline-block;
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
    #my-top-marquee {
        padding: 10px 0;
        font-size: 14px;
        min-height: 40px;
    }
    
    #my-top-marquee span {
        padding: 0 20px;
        font-size: 14px;
    }
}
