/* 跑馬燈樣式 */
.marquee-container {
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    padding: 12px 0;
    overflow: hidden;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1000;
    backdrop-filter: blur(5px);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.marquee-container .marquee {
    white-space: nowrap;
    display: inline-block;
    animation: marquee 25s linear infinite;
}
.marquee-container .marquee:hover {
    animation-play-state: paused;
}
@keyframes marquee {
    0% {
        transform: translateX(150%);
    }
    100% {
        transform: translateX(-100%);
    }
}
.marquee-container .marquee-content {
    display: inline-block;
    padding: 0 50px;
    color: #0080FF;
    font-weight: 500;
    font-size: 1em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
}

/* 調整主容器底部邊距，避免被跑馬燈遮擋 */
body {
    margin-bottom: 46px !important;
}
