.bee999-banner-wrapper {
    width: 100%;
    background: #084C4D;
    border-radius: 0;
    overflow: hidden;
    border-bottom: 3px solid #FFD700;
    max-width: 1200px;
    margin: 2rem auto;
}

.bee999-main-container {
    display: flex;
    align-items: center;
    height: 70px;
    background: linear-gradient(180deg, #084C4D 0%, #113C3C 100%);
}

.bee999-logo-block {
    flex-shrink: 0;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 28px;
    background: linear-gradient(145deg, #113C3C 0%, #084C4D 100%);
    border-right: 3px solid #FFD700;
    min-width: 200px;
    position: relative;
}

.bee999-logo-block::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(to bottom, #FFD700, #FFA500);
}

.bee999-icon-animated {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 14px;
    animation: bee999bounce 2.5s ease-in-out infinite;
    box-shadow: 0 0 18px rgba(255, 215, 0, 0.8);
}

@keyframes bee999bounce {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        box-shadow: 0 0 18px rgba(255, 215, 0, 0.8);
    }
    25% {
        transform: scale(1.12) rotate(-5deg);
    }
    50% {
        transform: scale(1.2) rotate(5deg);
        box-shadow: 0 0 28px rgba(255, 215, 0, 1);
    }
    75% {
        transform: scale(1.12) rotate(-5deg);
    }
}

.bee999-brand-name {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
    letter-spacing: 3px;
}

.bee999-ticker-zone {
    flex: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
    background: #084C4D;
}

.bee999-content-flow {
    display: flex;
    align-items: center;
    height: 100%;
    animation: bee999slide 10s linear infinite;
}

.bee999-content-flow:hover {
    animation-play-state: paused;
}

@keyframes bee999slide {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.bee999-message-list {
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding: 0;
    margin: 0;
    list-style: none;
}

.bee999-message {
    padding: 0 80px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.4s ease;
}

.bee999-message:hover {
    color: #FFD700;
    transform: scale(1.08);
}

.bee999-accent {
    color: #FFD700;
    font-weight: 900;
    text-shadow: 0 0 15px rgba(255, 215, 0, 1);
    animation: bee999shine 2.5s ease-in-out infinite;
}

@keyframes bee999shine {
    0%, 100% {
        text-shadow: 0 0 15px rgba(255, 215, 0, 1);
        color: #FFD700;
    }
    50% {
        text-shadow: 0 0 25px rgba(255, 215, 0, 1), 0 0 35px rgba(255, 165, 0, 0.8);
        color: #FFA500;
    }
}

.bee999-cta-block {
    flex-shrink: 0;
    width: 70px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-left: 3px solid #FFD700;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
}

.bee999-cta-block::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(to bottom, #FFD700, #FFA500);
}

.bee999-cta-block:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
    transform: scale(1.05);
}

.bee999-app-icon {
    width: 38px;
    height: 38px;
    background: #084C4D;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 2px solid #FFD700;
    transition: all 0.4s ease;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.bee999-cta-block:hover .bee999-app-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    border-color: #FFA500;
}

@media (max-width: 768px) {
    .bee999-main-container {
        height: 60px;
    }
    
    .bee999-logo-block {
        padding: 0 18px;
        min-width: 150px;
    }
    
    .bee999-brand-name {
        font-size: 24px;
        letter-spacing: 2px;
    }
    
    .bee999-icon-animated {
        width: 28px;
        height: 28px;
        font-size: 15px;
        margin-right: 10px;
    }
    
    .bee999-cta-block {
        width: 60px;
    }
    
    .bee999-message {
        padding: 0 60px;
        font-size: 14px;
    }
    
    .bee999-app-icon {
        width: 32px;
        height: 32px;
        font-size: 17px;
    }
}