.cbaje-banner-container {
    width: 100%;
    background: linear-gradient(145deg, #0A0D13 0%, #14161C 100%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
    border-bottom: 2px solid rgba(255, 200, 50, 0.35);
    max-width: 1200px;
    margin: 2rem auto;
}

.main-banner-strip {
    display: flex;
    align-items: center;
    height: 60px;
    background: linear-gradient(95deg, #0A0D13 0%, #181B24 45%, #0A0D13 100%);
    position: relative;
    overflow: hidden;
}

.main-banner-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1.5px;
    background: linear-gradient(85deg, 
        transparent 0%, 
        rgba(255, 200, 50, 0.5) 20%, 
        rgba(60, 220, 60, 0.5) 50%, 
        rgba(30, 180, 255, 0.5) 80%, 
        transparent 100%);
    animation: topLineShine 3.5s linear infinite;
}

@keyframes topLineShine {
    0% {
        transform: translateX(-110%);
    }
    100% {
        transform: translateX(110%);
    }
}

.sound-indicator-box {
    flex-shrink: 0;
    width: 60px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 13, 19, 0.6);
    border-right: 2px solid rgba(255, 200, 50, 0.3);
    position: relative;
}

.sound-indicator-box::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 200, 50, 0.2) 0%, transparent 65%);
    animation: radianceEffect 2.8s ease-in-out infinite;
}

@keyframes radianceEffect {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 1;
    }
}

.megaphone-icon {
    font-size: 26px;
    position: relative;
    z-index: 3;
    animation: iconMotion 2.2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 200, 50, 0.7));
}

@keyframes iconMotion {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    30% {
        transform: scale(1.12) rotate(-7deg);
    }
    70% {
        transform: scale(1.12) rotate(7deg);
    }
}

.ticker-scroll-area {
    flex: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
    background: transparent;
    mask-image: linear-gradient(95deg, 
        transparent 0%, 
        black 8%, 
        black 92%, 
        transparent 100%);
    -webkit-mask-image: linear-gradient(95deg, 
        transparent 0%, 
        black 8%, 
        black 92%, 
        transparent 100%);
}

.ticker-track {
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
    animation: tickerSlide 10s linear infinite;
}

.ticker-track:hover {
    animation-play-state: paused;
}

@keyframes tickerSlide {
    0% {
        transform: translateX(105%);
    }
    100% {
        transform: translateX(-105%);
    }
}

.ticker-message {
    display: inline-block;
    padding-right: 130%;
    font-size: 15.5px;
    font-weight: 600;
    color: #E5E7EB;
    line-height: 1.7;
    letter-spacing: 0.4px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
}

.highlight-yellow {
    color: #FFC832;
    font-weight: 800;
    text-shadow: 0 0 14px rgba(255, 200, 50, 0.85), 0 0 7px rgba(255, 200, 50, 0.65);
    animation: yellowPulse 3.2s ease-in-out infinite;
}

.highlight-green {
    color: #3CDC3C;
    font-weight: 800;
    text-shadow: 0 0 14px rgba(60, 220, 60, 0.85), 0 0 7px rgba(60, 220, 60, 0.65);
    animation: greenPulse 3.2s ease-in-out infinite 0.6s;
}

.highlight-blue {
    color: #1EB4FF;
    font-weight: 800;
    text-shadow: 0 0 14px rgba(30, 180, 255, 0.85), 0 0 7px rgba(30, 180, 255, 0.65);
    animation: bluePulse 3.2s ease-in-out infinite 1.2s;
}

@keyframes yellowPulse {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.35);
    }
}

@keyframes greenPulse {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.35);
    }
}

@keyframes bluePulse {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.35);
    }
}

.close-button-area {
    flex-shrink: 0;
    width: 60px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 13, 19, 0.6);
    border-left: 2px solid rgba(255, 200, 50, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 0, 0.15, 1);
    text-decoration: none;
    position: relative;
}

.close-button-area:hover {
    background: rgba(255, 200, 50, 0.25);
    transform: scale(1.08);
}

.close-button-area:active {
    transform: scale(0.92);
}

.close-icon {
    font-size: 30px;
    color: #FFFFFF;
    font-weight: 800;
    line-height: 1;
    transition: all 0.35s ease;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
}

.close-button-area:hover .close-icon {
    color: #FFC832;
    transform: rotate(95deg);
}

.notification-badge {
    position: absolute;
    top: 9px;
    right: 9px;
    background: linear-gradient(140deg, #FF3838 0%, #C41010 100%);
    color: #FFFFFF;
    font-size: 11.5px;
    font-weight: 900;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(255, 56, 56, 0.75), 0 0 0 2.5px rgba(255, 56, 56, 0.35);
    animation: badgeBounce 2.8s ease-in-out infinite;
    border: 2.5px solid rgba(255, 255, 255, 0.35);
}

@keyframes badgeBounce {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(255, 56, 56, 0.75), 0 0 0 2.5px rgba(255, 56, 56, 0.35);
    }
    50% {
        transform: scale(1.25);
        box-shadow: 0 5px 14px rgba(255, 56, 56, 0.95), 0 0 0 4px rgba(255, 56, 56, 0.55);
    }
}

@media (max-width: 768px) {
    .main-banner-strip {
        height: 54px;
    }
    
    .sound-indicator-box {
        width: 54px;
    }
    
    .megaphone-icon {
        font-size: 22px;
    }
    
    .close-button-area {
        width: 54px;
    }
    
    .ticker-message {
        font-size: 14px;
    }
    
    .close-icon {
        font-size: 26px;
    }
    
    .notification-badge {
        width: 21px;
        height: 21px;
        font-size: 10.5px;
        top: 7px;
        right: 7px;
    }
}

@media (max-width: 480px) {
    .main-banner-strip {
        height: 50px;
    }
    
    .sound-indicator-box {
        width: 50px;
    }
    
    .megaphone-icon {
        font-size: 20px;
    }
    
    .close-button-area {
        width: 50px;
    }
    
    .ticker-message {
        font-size: 13px;
        letter-spacing: 0.3px;
    }
    
    .close-icon {
        font-size: 24px;
    }
    
    .notification-badge {
        width: 19px;
        height: 19px;
        font-size: 9.5px;
        top: 6px;
        right: 6px;
    }
}