.dhaka7-promo-banner {
    width: 100%;
    background: linear-gradient(145deg, #097061 0%, #125635 100%);
    box-shadow: 0 8px 24px rgba(9, 112, 97, 0.6);
    border-bottom: 4px solid rgba(18, 86, 53, 0.8);
    max-width: 1200px;
    margin: 2rem auto;
}

.promo-container {
    display: flex;
    align-items: center;
    height: 64px;
    background: linear-gradient(90deg, #0a5a4d 0%, #097061 50%, #0a5a4d 100%);
    position: relative;
    overflow: hidden;
}

.promo-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 25%, 
        rgba(255, 223, 0, 0.5) 50%, 
        rgba(255, 255, 255, 0.3) 75%, 
        transparent 100%);
    animation: lineShimmer 4s linear infinite;
}

@keyframes lineShimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.sound-icon-section {
    flex-shrink: 0;
    width: 64px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    border-right: 3px solid rgba(255, 223, 0, 0.3);
    position: relative;
}

.sound-icon-section::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 223, 0, 0.2) 0%, transparent 70%);
    animation: iconGlow 3s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 1;
    }
}

.sound-wave {
    font-size: 26px;
    position: relative;
    z-index: 2;
    animation: wavePulse 2.2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 223, 0, 0.7));
}

@keyframes wavePulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    30% {
        transform: scale(1.12) rotate(-8deg);
    }
    70% {
        transform: scale(1.12) rotate(8deg);
    }
}

.scrolling-announcement-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%);
}

.announcement-slider {
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
    animation: scrollAnimation 10s linear infinite;
}

.announcement-slider:hover {
    animation-play-state: paused;
}

@keyframes scrollAnimation {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.promo-message {
    display: inline-block;
    padding-right: 130%;
    font-size: 16px;
    font-weight: 600;
    color: #f0f2f5;
    line-height: 1.5;
    letter-spacing: 0.4px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
}

.brand-highlight {
    color: #ffdf00;
    font-weight: 900;
    text-shadow: 0 0 14px rgba(255, 223, 0, 0.9), 0 0 7px rgba(255, 223, 0, 0.7);
    animation: brandPulse 3.5s ease-in-out infinite;
}

.money-green {
    color: #00ff88;
    font-weight: 900;
    text-shadow: 0 0 14px rgba(0, 255, 136, 0.9), 0 0 7px rgba(0, 255, 136, 0.7);
    animation: brandPulse 3.5s ease-in-out infinite 0.7s;
}

.money-gold {
    color: #ffa500;
    font-weight: 900;
    text-shadow: 0 0 14px rgba(255, 165, 0, 0.9), 0 0 7px rgba(255, 165, 0, 0.7);
    animation: brandPulse 3.5s ease-in-out infinite 1.4s;
}

@keyframes brandPulse {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.4);
    }
}

.close-button-zone {
    flex-shrink: 0;
    width: 64px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    border-left: 3px solid rgba(255, 223, 0, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
}

.close-button-zone:hover {
    background: rgba(255, 223, 0, 0.25);
    transform: scale(1.08);
}

.close-button-zone:active {
    transform: scale(0.92);
}

.close-icon {
    font-size: 32px;
    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-zone:hover .close-icon {
    color: #ffdf00;
    transform: rotate(180deg);
}

.notification-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #ff6b6b 0%, #d63031 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, 107, 107, 0.8), 0 0 0 3px rgba(255, 107, 107, 0.4);
    animation: badgeBounce 3s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

@keyframes badgeBounce {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(255, 107, 107, 0.8), 0 0 0 3px rgba(255, 107, 107, 0.4);
    }
    50% {
        transform: scale(1.25);
        box-shadow: 0 5px 14px rgba(255, 107, 107, 1), 0 0 0 4px rgba(255, 107, 107, 0.6);
    }
}

@media (max-width: 768px) {
    .promo-container {
        height: 56px;
    }
    
    .sound-icon-section {
        width: 56px;
    }
    
    .sound-wave {
        font-size: 22px;
    }
    
    .close-button-zone {
        width: 56px;
    }
    
    .promo-message {
        font-size: 14px;
    }
    
    .close-icon {
        font-size: 28px;
    }
    
    .notification-badge {
        width: 22px;
        height: 22px;
        font-size: 11px;
        top: 10px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .promo-container {
        height: 50px;
    }
    
    .sound-icon-section {
        width: 50px;
    }
    
    .sound-wave {
        font-size: 20px;
    }
    
    .close-button-zone {
        width: 50px;
    }
    
    .promo-message {
        font-size: 13px;
        letter-spacing: 0.25px;
    }
    
    .close-icon {
        font-size: 26px;
    }
    
    .notification-badge {
        width: 20px;
        height: 20px;
        font-size: 10px;
        top: 8px;
        right: 8px;
    }
}