.cbaji-announcement-wrapper {
    width: 100%;
    background: linear-gradient(135deg, #1a1f2e 0%, #0A0D13 100%);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 3px solid rgba(255, 215, 0, 0.3);
    max-width: 1200px;
    margin: 2rem auto;
}

.announcement-strip {
    display: flex;
    align-items: center;
    height: 58px;
    background: linear-gradient(90deg, #0f1420 0%, #1a1f2e 50%, #0f1420 100%);
    position: relative;
    overflow: hidden;
}

.announcement-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 215, 0, 0.4) 25%, 
        rgba(50, 205, 50, 0.4) 50%, 
        rgba(0, 191, 255, 0.4) 75%, 
        transparent 100%);
    animation: shimmerEffect 3s linear infinite;
}

@keyframes shimmerEffect {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.audio-indicator {
    flex-shrink: 0;
    width: 58px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    border-right: 2px solid rgba(255, 215, 0, 0.25);
    position: relative;
}

.audio-indicator::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    animation: glowPulse 2.5s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.speaker-symbol {
    font-size: 24px;
    position: relative;
    z-index: 2;
    animation: speakerBounce 2s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

@keyframes speakerBounce {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.08) rotate(-5deg);
    }
    75% {
        transform: scale(1.08) rotate(5deg);
    }
}

.scrolling-content-zone {
    flex: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
    background: transparent;
    mask-image: linear-gradient(90deg, 
        transparent 0%, 
        black 5%, 
        black 95%, 
        transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, 
        transparent 0%, 
        black 5%, 
        black 95%, 
        transparent 100%);
}

.content-runner {
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
    animation: slideContent 10s linear infinite;
}

.content-runner:hover {
    animation-play-state: paused;
}

@keyframes slideContent {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.announcement-text {
    display: inline-block;
    padding-right: 120%;
    font-size: 15px;
    font-weight: 600;
    color: #e8e9ed;
    line-height: 1.6;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.accent-gold {
    color: #ffd700;
    font-weight: 800;
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.8), 0 0 6px rgba(255, 215, 0, 0.6);
    animation: textGlow 3s ease-in-out infinite;
}

.accent-lime {
    color: #32cd32;
    font-weight: 800;
    text-shadow: 0 0 12px rgba(50, 205, 50, 0.8), 0 0 6px rgba(50, 205, 50, 0.6);
    animation: textGlow 3s ease-in-out infinite 0.5s;
}

.accent-cyan {
    color: #00bfff;
    font-weight: 800;
    text-shadow: 0 0 12px rgba(0, 191, 255, 0.8), 0 0 6px rgba(0, 191, 255, 0.6);
    animation: textGlow 3s ease-in-out infinite 1s;
}

@keyframes textGlow {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.3);
    }
}

.dismiss-control {
    flex-shrink: 0;
    width: 58px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    border-left: 2px solid rgba(255, 215, 0, 0.25);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
}

.dismiss-control:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: scale(1.05);
}

.dismiss-control:active {
    transform: scale(0.95);
}

.dismiss-symbol {
    font-size: 28px;
    color: #ffffff;
    font-weight: 700;
    line-height: 1;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.dismiss-control:hover .dismiss-symbol {
    color: #ffd700;
    transform: rotate(90deg);
}

.alert-counter {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(255, 68, 68, 0.7), 0 0 0 2px rgba(255, 68, 68, 0.3);
    animation: counterPulse 2.5s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

@keyframes counterPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 3px 8px rgba(255, 68, 68, 0.7), 0 0 0 2px rgba(255, 68, 68, 0.3);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 4px 12px rgba(255, 68, 68, 0.9), 0 0 0 3px rgba(255, 68, 68, 0.5);
    }
}

@media (max-width: 768px) {
    .announcement-strip {
        height: 52px;
    }
    
    .audio-indicator {
        width: 52px;
    }
    
    .speaker-symbol {
        font-size: 20px;
    }
    
    .dismiss-control {
        width: 52px;
    }
    
    .announcement-text {
        font-size: 13.5px;
    }
    
    .dismiss-symbol {
        font-size: 24px;
    }
    
    .alert-counter {
        width: 20px;
        height: 20px;
        font-size: 10px;
        top: 8px;
        right: 8px;
    }
}

@media (max-width: 480px) {
    .announcement-strip {
        height: 48px;
    }
    
    .audio-indicator {
        width: 48px;
    }
    
    .speaker-symbol {
        font-size: 18px;
    }
    
    .dismiss-control {
        width: 48px;
    }
    
    .announcement-text {
        font-size: 12.5px;
        letter-spacing: 0.2px;
    }
    
    .dismiss-symbol {
        font-size: 22px;
    }
    
    .alert-counter {
        width: 18px;
        height: 18px;
        font-size: 9px;
        top: 7px;
        right: 7px;
    }
}






