.pftt-ticker-wrapper {
    position: fixed;
    left: 0;
    width: 100%;
    z-index: 99999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.pftt-position-top { top: 0; }
.pftt-position-bottom { bottom: 0; }

.pftt-ticker {
    padding: 12px 50px 12px 20px;
    overflow: hidden;
    min-height: 40px;
    display: flex;
    align-items: center;
}

.pftt-ticker-track {
    display: inline-flex;
    white-space: nowrap;
    animation: pftt-scroll-left 30s linear infinite;
}

.pftt-scroll-right .pftt-ticker-track {
    animation-name: pftt-scroll-right;
}

@keyframes pftt-scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes pftt-scroll-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.pftt-ticker-item {
    display: inline-block;
    padding: 0 15px;
    font-weight: 500;
}

.pftt-separator {
    display: inline-block;
    color: rgba(255,255,255,0.4);
    font-size: 1.2em;
}

.pftt-close-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 24px;
    cursor: pointer;
    padding: 0 5px;
}

.pftt-close-btn:hover {
    color: #fff;
}

.pftt-ticker.paused .pftt-ticker-track {
    animation-play-state: paused !important;
}

@media (max-width: 768px) {
    .pftt-ticker { padding: 10px 40px 10px 15px; }
    .pftt-ticker-item { padding: 0 10px; font-size: 0.9em; }
}

@media (prefers-reduced-motion: reduce) {
    .pftt-ticker-track { animation-duration: 60s !important; }
}