.info-ticker-container {
    width: 100%;
    background: #9D1D22;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
    margin: 2rem auto;
    max-width: 1200px;
}

.ticker-bar {
    display: flex;
    align-items: center;
    height: 54px;
    background: #9D1D22;
    position: relative;
}

.sound-icon {
    flex-shrink: 0;
    width: 54px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
    border-right: 2px solid rgba(120, 98, 171, 0.4);
}

.icon-speaker {
    font-size: 22px;
    color: #ffffff;
    animation: speakerPulse 1.8s ease-in-out infinite;
}

@keyframes speakerPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.12);
        opacity: 0.85;
    }
}

.ticker-scroll-area {
    flex: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
    background: #9D1D22;
}

.ticker-track {
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
    animation: tickerScroll 10s linear infinite;
}

.ticker-track:hover {
    animation-play-state: paused;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.ticker-messages {
    display: inline-block;
    padding-right: 100%;
    font-size: 14.5px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.5;
}

.highlight-yellow {
    color: #f1c40f;
    font-weight: 900;
    text-shadow: 0 0 10px rgba(241, 196, 15, 0.7);
}

.highlight-green {
    color: #00ff00;
    font-weight: 900;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.7);
}

.highlight-blue {
    color: #3366ee;
    font-weight: 900;
    text-shadow: 0 0 10px rgba(51, 102, 238, 0.7);
}

.close-button {
    flex-shrink: 0;
    width: 54px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
    border-left: 2px solid rgba(120, 98, 171, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.close-button:hover {
    background: rgba(120, 98, 171, 0.4);
}

.close-icon {
    font-size: 24px;
    color: #ffffff;
    font-weight: 700;
}

.notification-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #ff3333;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(255, 51, 51, 0.6);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

@media (max-width: 768px) {
    .ticker-bar {
        height: 48px;
    }
    
    .sound-icon {
        width: 48px;
    }
    
    .icon-speaker {
        font-size: 19px;
    }
    
    .close-button {
        width: 48px;
    }
    
    .ticker-messages {
        font-size: 13px;
    }
    
    .close-icon {
        font-size: 21px;
    }
    
    .notification-badge {
        width: 18px;
        height: 18px;
        font-size: 10px;
        top: 6px;
        right: 6px;
    }
}

@media (max-width: 480px) {
    .ticker-bar {
        height: 44px;
    }
    
    .sound-icon {
        width: 44px;
    }
    
    .icon-speaker {
        font-size: 17px;
    }
    
    .close-button {
        width: 44px;
    }
    
    .ticker-messages {
        font-size: 12px;
    }
}