/* Container Layout */
.pip-ticker-container {
    display: flex;
    align-items: center;
    background: #f9f9f9;
    color: #000;
    overflow: hidden;
    height: 48px;
    width: 100%;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    position: relative;
    z-index: 99;
}

.pip-ticker-label {
    background: #003F9B;
    color: #fff;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 1em;
    letter-spacing: 0.5px;
    z-index: 10;
    white-space: nowrap;
    box-shadow: 4px 0 10px rgba(0,0,0,0.3);
}

.pip-ticker-content {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.pip-ticker-track {
    display: flex;
    white-space: nowrap;
    animation: pipScroll 25s linear infinite;
}

.pip-ticker-track:hover {
    animation-play-state: paused;
}

.pip-ticker-item {
    display: flex;
    align-items: center;
    padding-left: 20px;
    font-size: 1em;
}

.pip-ticker-item::after {
    content: "•";
    margin-left: 20px;
    color: #003F9B;
    font-size: 20px;
}

/* Link Button Style */
.pip-ticker-link {
    display: inline-block;
    background: #fff;
    color: #1a1a1a;
    padding: 2px 10px;
    margin-left: 12px;
    font-size: 0.9em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 2px;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.pip-ticker-link:hover {
    background: #003F9B;
    color: #fff;
}

/* Scroll Animation */
@keyframes pipScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Tablet & Mobile Tweaks */
@media (max-width: 768px) {
    .pip-ticker-container { height: 40px; }
    .pip-ticker-label { font-size: 11px; padding: 0 12px; }
    .pip-ticker-item { padding-left: 30px; font-size: 13px; }
    .pip-ticker-item::after { margin-left: 30px; }
}