.ticker-container {
    background: #003372;
    border: 1px solid rgba(0, 194, 255, 0.4);
    box-shadow: 0 0 15px rgba(0, 194, 255, 0.15);
    border-radius: 50px;
    padding: 10px 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    white-space: nowrap;
    transition: box-shadow 0.3s ease;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 40px;
}

.ticker-icon {
    color: #00c2ff;
    margin-right: 15px;
    font-size: 1.2em;
    text-shadow: 0 0 5px rgba(0, 194, 255, 0.7);
}

.ticker-wrapper {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 25s linear infinite;
}

.ticker-content {
    color: #e0faff;
    font-size: 14px;
    font-weight: 500;
}

.ticker-container:hover {
    box-shadow: 0 0 20px rgba(0, 194, 255, 0.3);
}

.ticker-container:hover .ticker-wrapper {
    animation-play-state: paused;
}

@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}