.bb44-banner-wrapper {
    width: 100%;
    background: linear-gradient(135deg, #00352F 0%, #013F40 100%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
    border-bottom: 3px solid rgba(255, 215, 0, 0.35);
    position: relative;
    max-width: 1200px;
    margin: 2rem auto;
}

.banner-container {
    display: flex;
    align-items: center;
    height: 62px;
    background: linear-gradient(90deg, #00352F 0%, #013F40 50%, #00352F 100%);
    position: relative;
    overflow: hidden;
}

.banner-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 215, 0, 0.5) 20%, 
        rgba(0, 255, 170, 0.5) 40%, 
        rgba(255, 215, 0, 0.5) 60%, 
        rgba(0, 255, 170, 0.5) 80%, 
        transparent 100%);
    animation: lightSweep 4s linear infinite;
}

@keyframes lightSweep {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(50%);
    }
}

.sound-zone {
    flex-shrink: 0;
    width: 62px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.45);
    border-right: 2px solid rgba(255, 215, 0, 0.3);
    position: relative;
    z-index: 2;
}

.sound-zone::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.2) 0%, transparent 65%);
    animation: radiateGlow 2.8s ease-in-out infinite;
}

@keyframes radiateGlow {
    0%, 100% {
        opacity: 0.4;
        transform: scale(0.9);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.sound-icon {
    font-size: 26px;
    position: relative;
    z-index: 3;
    color: rgba(255, 215, 0, 1);
    animation: iconPulse 2.2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.7));
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    30% {
        transform: scale(1.12) rotate(-8deg);
    }
    70% {
        transform: scale(1.12) rotate(8deg);
    }
}

.content-slider {
    flex: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
    background: transparent;
    mask-image: linear-gradient(90deg, 
        transparent 0%, 
        black 8%, 
        black 92%, 
        transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, 
        transparent 0%, 
        black 8%, 
        black 92%, 
        transparent 100%);
}

.slider-content {
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
    animation: scrollText 10s linear infinite;
}

.slider-content:hover {
    animation-play-state: paused;
}

@keyframes scrollText {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.banner-text {
    display: inline-block;
    padding-right: 150%;
    font-size: 15.5px;
    font-weight: 600;
    color: #f0f1f5;
    line-height: 1.65;
    letter-spacing: 0.4px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.85);
}

.text-primary {
    color: #00FFD4;
    font-weight: 800;
    text-shadow: 0 0 14px rgba(0, 255, 212, 0.85), 0 0 7px rgba(0, 255, 212, 0.65);
    animation: colorPulse 3.2s ease-in-out infinite;
}

.text-secondary {
    color: #FFD700;
    font-weight: 800;
    text-shadow: 0 0 14px rgba(255, 215, 0, 0.85), 0 0 7px rgba(255, 215, 0, 0.65);
    animation: colorPulse 3.2s ease-in-out infinite 0.6s;
}

.text-accent {
    color: #00FF7F;
    font-weight: 800;
    text-shadow: 0 0 14px rgba(0, 255, 127, 0.85), 0 0 7px rgba(0, 255, 127, 0.65);
    animation: colorPulse 3.2s ease-in-out infinite 1.2s;
}

@keyframes colorPulse {
    0%, 100% {
        filter: brightness(1);
        opacity: 1;
    }
    50% {
        filter: brightness(1.4);
        opacity: 0.95;
    }
}

.action-button {
    flex-shrink: 0;
    width: 62px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.45);
    border-left: 2px solid rgba(255, 215, 0, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    z-index: 2;
}

.action-button:hover {
    background: rgba(255, 215, 0, 0.25);
    transform: scale(1.08);
}

.action-button:active {
    transform: scale(0.92);
}

.close-mark {
    font-size: 32px;
    color: #ffffff;
    font-weight: 700;
    line-height: 1;
    transition: all 0.35s ease;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.action-button:hover .close-mark {
    color: #FFD700;
    transform: rotate(90deg);
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.9);
}

.badge-counter {
    position: absolute;
    top: 11px;
    right: 11px;
    background: linear-gradient(135deg, #FF3366 0%, #CC0033 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 3px 10px rgba(255, 51, 102, 0.75), 0 0 0 2.5px rgba(255, 51, 102, 0.35);
    animation: badgeBeat 2.8s ease-in-out infinite;
    border: 2.5px solid rgba(255, 255, 255, 0.35);
}

@keyframes badgeBeat {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 3px 10px rgba(255, 51, 102, 0.75), 0 0 0 2.5px rgba(255, 51, 102, 0.35);
    }
    50% {
        transform: scale(1.25);
        box-shadow: 0 4px 14px rgba(255, 51, 102, 0.95), 0 0 0 4px rgba(255, 51, 102, 0.55);
    }
}

@media (max-width: 768px) {
    .banner-container {
        height: 56px;
    }
    
    .sound-zone {
        width: 56px;
    }
    
    .sound-icon {
        font-size: 22px;
    }
    
    .action-button {
        width: 56px;
    }
    
    .banner-text {
        font-size: 14px;
    }
    
    .close-mark {
        font-size: 28px;
    }
    
    .badge-counter {
        width: 21px;
        height: 21px;
        font-size: 10.5px;
        top: 9px;
        right: 9px;
    }
}

@media (max-width: 480px) {
    .banner-container {
        height: 50px;
    }
    
    .sound-zone {
        width: 50px;
    }
    
    .sound-icon {
        font-size: 20px;
    }
    
    .action-button {
        width: 50px;
    }
    
    .banner-text {
        font-size: 13px;
        letter-spacing: 0.25px;
    }
    
    .close-mark {
        font-size: 26px;
    }
    
    .badge-counter {
        width: 19px;
        height: 19px;
        font-size: 9.5px;
        top: 8px;
        right: 8px;
        border: 2px solid rgba(255, 255, 255, 0.35);
    }
}