.bd89-promo-container {
    width: 100%;
    background: linear-gradient(135deg, #2a1a2e 0%, #1a0f1e 100%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
    border-bottom: 4px solid rgba(254, 195, 219, 0.4);
    max-width: 1200px;
    margin: 2rem auto;
}

.promo-banner {
    display: flex;
    align-items: center;
    height: 60px;
    background: linear-gradient(90deg, #1a0f1e 0%, #2a1a2e 50%, #1a0f1e 100%);
    position: relative;
    overflow: hidden;
}

.bd89-promo-container i {
    color: #FEC3DB;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(254, 195, 219, 0.6) 30%, 
        rgba(236, 209, 221, 0.6) 50%, 
        rgba(254, 195, 219, 0.6) 70%, 
        transparent 100%);
    animation: lightWave 4s linear infinite;
}

@keyframes lightWave {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.icon-section {
    flex-shrink: 0;
    width: 60px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-right: 3px solid rgba(254, 195, 219, 0.3);
    position: relative;
}

.icon-section::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(254, 195, 219, 0.2) 0%, transparent 70%);
    animation: iconGlow 3s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 1;
    }
}

.megaphone-icon {
    font-size: 26px;
    position: relative;
    z-index: 2;
    animation: iconBounce 2.5s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(254, 195, 219, 0.8));
}

@keyframes iconBounce {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    20% {
        transform: scale(1.1) rotate(-8deg);
    }
    40% {
        transform: scale(1.05) rotate(4deg);
    }
    60% {
        transform: scale(1.1) rotate(-4deg);
    }
    80% {
        transform: scale(1.05) rotate(2deg);
    }
}

.scroll-area {
    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%);
}

.scroll-track {
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
    animation: scrollAnimation 10s linear infinite;
}

.scroll-track:hover {
    animation-play-state: paused;
}

@keyframes scrollAnimation {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.promo-message {
    display: inline-block;
    padding-right: 150%;
    font-size: 16px;
    font-weight: 600;
    color: #f0f0f5;
    line-height: 1.5;
    letter-spacing: 0.4px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
}

.highlight-pink {
    color: #FEC3DB;
    font-weight: 900;
    text-shadow: 0 0 15px rgba(254, 195, 219, 0.9), 0 0 8px rgba(254, 195, 219, 0.7);
    animation: textShine 3.5s ease-in-out infinite;
}

.highlight-gold {
    color: #ffd700;
    font-weight: 900;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.9), 0 0 8px rgba(255, 215, 0, 0.7);
    animation: textShine 3.5s ease-in-out infinite 0.7s;
}

@keyframes textShine {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.4);
    }
}

.close-button {
    flex-shrink: 0;
    width: 60px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-left: 3px solid rgba(254, 195, 219, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
}

.close-button:hover {
    background: rgba(254, 195, 219, 0.25);
    transform: scale(1.08);
}

.close-button: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 2px 6px rgba(0, 0, 0, 0.6);
}

.close-button:hover .close-icon {
    color: #FEC3DB;
    transform: rotate(180deg);
}

.notification-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, #ff3366 0%, #cc0044 100%);
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(255, 51, 102, 0.8), 0 0 0 3px rgba(255, 51, 102, 0.4);
    animation: badgePulse 3s ease-in-out infinite;
    border: 2.5px solid rgba(255, 255, 255, 0.4);
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(255, 51, 102, 0.8), 0 0 0 3px rgba(255, 51, 102, 0.4);
    }
    50% {
        transform: scale(1.25);
        box-shadow: 0 5px 15px rgba(255, 51, 102, 1), 0 0 0 4px rgba(255, 51, 102, 0.6);
    }
}

@media (max-width: 768px) {
    .promo-banner {
        height: 54px;
    }
    
    .icon-section {
        width: 54px;
    }
    
    .megaphone-icon {
        font-size: 22px;
    }
    
    .close-button {
        width: 54px;
    }
    
    .promo-message {
        font-size: 14px;
    }
    
    .close-icon {
        font-size: 26px;
    }
    
    .notification-badge {
        width: 22px;
        height: 22px;
        font-size: 11px;
        top: 7px;
        right: 7px;
    }
}

@media (max-width: 480px) {
    .promo-banner {
        height: 50px;
    }
    
    .icon-section {
        width: 50px;
    }
    
    .megaphone-icon {
        font-size: 20px;
    }
    
    .close-button {
        width: 50px;
    }
    
    .promo-message {
        font-size: 13px;
        letter-spacing: 0.3px;
    }
    
    .close-icon {
        font-size: 24px;
    }
    
    .notification-badge {
        width: 20px;
        height: 20px;
        font-size: 10px;
        top: 6px;
        right: 6px;
    }
}