.king1-promo-container {
    width: 100%;
    background: linear-gradient(135deg, #02432D 0%, #001a11 100%);
    box-shadow: 0 8px 24px rgba(2, 67, 45, 0.6);
    border-bottom: 3px solid rgba(25, 123, 89, 0.4);
    max-width: 1200px;
    margin: 2rem auto;
}

.promo-banner {
    display: flex;
    align-items: center;
    height: 60px;
    background: linear-gradient(90deg, #01351f 0%, #02432D 50%, #01351f 100%);
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(25, 123, 89, 0.5) 20%, 
        rgba(255, 215, 0, 0.5) 50%, 
        rgba(0, 191, 255, 0.5) 80%, 
        transparent 100%);
    animation: lightSweep 4s linear infinite;
}

@keyframes lightSweep {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.notification-icon {
    flex-shrink: 0;
    width: 60px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-right: 2px solid rgba(25, 123, 89, 0.3);
    position: relative;
}

.notification-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(25, 123, 89, 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: bellShake 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(25, 123, 89, 0.7));
}

@keyframes bellShake {
    0%, 100% {
        transform: rotate(0deg);
    }
    10% {
        transform: rotate(-15deg);
    }
    20% {
        transform: rotate(15deg);
    }
    30% {
        transform: rotate(-10deg);
    }
    40% {
        transform: rotate(10deg);
    }
    50% {
        transform: rotate(0deg);
    }
}

.message-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: continuousScroll 10s linear infinite;
}

.scroll-track:hover {
    animation-play-state: paused;
}

@keyframes continuousScroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.promo-message {
    display: inline-block;
    padding-right: 150%;
    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);
}

.highlight-green {
    color: #197B59;
    font-weight: 800;
    text-shadow: 0 0 14px rgba(25, 123, 89, 0.9), 0 0 7px rgba(25, 123, 89, 0.7);
    animation: colorPulse 3.5s ease-in-out infinite;
}

.highlight-gold {
    color: #FFD700;
    font-weight: 800;
    text-shadow: 0 0 14px rgba(255, 215, 0, 0.9), 0 0 7px rgba(255, 215, 0, 0.7);
    animation: colorPulse 3.5s ease-in-out infinite 0.7s;
}

.highlight-cyan {
    color: #00BFFF;
    font-weight: 800;
    text-shadow: 0 0 14px rgba(0, 191, 255, 0.9), 0 0 7px rgba(0, 191, 255, 0.7);
    animation: colorPulse 3.5s ease-in-out infinite 1.4s;
}

@keyframes colorPulse {
    0%, 100% {
        filter: brightness(1);
        transform: scale(1);
    }
    50% {
        filter: brightness(1.4);
        transform: scale(1.02);
    }
}

.action-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: 2px solid rgba(25, 123, 89, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
}

.action-button:hover {
    background: rgba(25, 123, 89, 0.25);
    transform: scale(1.08);
}

.action-button:active {
    transform: scale(0.92);
}

.close-icon {
    font-size: 30px;
    color: #ffffff;
    font-weight: 700;
    line-height: 1;
    transition: all 0.35s ease;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
}

.action-button:hover .close-icon {
    color: #197B59;
    transform: rotate(180deg);
}

.notification-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, #FF4444 0%, #CC0000 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, 68, 68, 0.8), 0 0 0 3px rgba(255, 68, 68, 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, 68, 68, 0.8), 0 0 0 3px rgba(255, 68, 68, 0.4);
    }
    50% {
        transform: scale(1.25);
        box-shadow: 0 5px 14px rgba(255, 68, 68, 1), 0 0 0 4px rgba(255, 68, 68, 0.6);
    }
}

@media (max-width: 768px) {
    .promo-banner {
        height: 54px;
    }
    
    .notification-icon {
        width: 54px;
    }
    
    .megaphone-icon {
        font-size: 22px;
    }
    
    .action-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;
    }
    
    .notification-icon {
        width: 50px;
    }
    
    .megaphone-icon {
        font-size: 20px;
    }
    
    .action-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;
    }
}