.ribbon-ticker-container {
    width: 100%;
    height: 50px;
    background-color: #eaeaea; /* Secondary */
    display: flex;
    overflow: hidden;
    position: relative;
    z-index: 9999;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.ribbon-ticker-label {
    background-color: #e13b62; /* Primary */
    color: #ffffff;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 20px;
    font-weight: bold;
    z-index: 10;
    white-space: nowrap;
    box-shadow: 5px 0 10px rgba(0,0,0,0.1);
}

.ribbon-ticker-content {
    flex-grow: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.ribbon-ticker-track {
    display: flex;
    white-space: nowrap;
    animation: ribbon-ticker-animation 40s linear infinite;
}

.ribbon-ticker-container:hover .ribbon-ticker-track {
    animation-play-state: paused;
}

.ribbon-ticker-item {
    padding: 0 30px;
    display: flex;
    align-items: center;
}

.ribbon-ticker-item a {
    color: #000000; /* Text */
    text-decoration: none;
    font-size: 16px;
    font-family: sans-serif;
    transition: 0.3s all;
    font-weight: 500;
}

.ribbon-ticker-item a:hover {
    color: #e13b62; /* Primary */
}

@keyframes ribbon-ticker-animation {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .ribbon-ticker-label {
        padding: 0 10px;
        font-size: 12px;
    }
    .ribbon-ticker-item {
        padding: 0 20px;
    }
    .ribbon-ticker-item a {
        font-size: 14px;
    }
}
