.f999-banner-wrapper {
    width: 100%;
    background: #00302B;
    border-radius: 0;
    overflow: hidden;
    border-bottom: 3px solid #04534A;
    max-width: 1200px;
    margin: 2rem auto;
    box-shadow: 0 4px 20px rgba(4, 83, 74, 0.4);
}

.f999-main-container {
    display: flex;
    align-items: center;
    height: 70px;
    background: linear-gradient(180deg, #00302B 0%, #001f1c 100%);
}

.f999-logo-zone {
    flex-shrink: 0;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 28px;
    background: linear-gradient(135deg, #04534A 0%, #036357 100%);
    border-right: 3px solid #06FFCC;
    min-width: 200px;
    position: relative;
}

.f999-logo-zone::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(6, 255, 204, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.f999-icon-animated {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, #06FFCC 0%, #04B89D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 14px;
    animation: f999IconBounce 2.5s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(6, 255, 204, 0.8), inset 0 0 10px rgba(255, 255, 255, 0.3);
    z-index: 1;
}

@keyframes f999IconBounce {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        box-shadow: 0 0 20px rgba(6, 255, 204, 0.8);
    }
    25% {
        transform: scale(1.2) rotate(5deg);
        box-shadow: 0 0 30px rgba(6, 255, 204, 1), 0 0 40px rgba(4, 83, 74, 0.6);
    }
    50% {
        transform: scale(1.1) rotate(-5deg);
        box-shadow: 0 0 25px rgba(6, 255, 204, 0.9);
    }
    75% {
        transform: scale(1.2) rotate(5deg);
        box-shadow: 0 0 30px rgba(6, 255, 204, 1);
    }
}

.f999-brand-title {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, #06FFCC 0%, #04B89D 50%, #06FFCC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(6, 255, 204, 0.5);
    animation: f999BrandGlow 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes f999BrandGlow {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.3);
    }
}

.f999-marquee-zone {
    flex: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
    background: #00302B;
}

.f999-marquee-zone::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, #00302B 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.f999-marquee-zone::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(270deg, #00302B 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.f999-scroll-track {
    display: flex;
    align-items: center;
    height: 100%;
    animation: f999MarqueeScroll 10s linear infinite;
    will-change: transform;
}

.f999-scroll-track:hover {
    animation-play-state: paused;
}

@keyframes f999MarqueeScroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.f999-content-list {
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 0;
}

.f999-content-item {
    padding: 0 80px;
    font-size: 16px;
    font-weight: 600;
    color: #E0F7F4;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
}

.f999-content-item::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #06FFCC, transparent);
    transform: translateX(-50%);
    transition: width 0.4s ease;
}

.f999-content-item:hover {
    color: #06FFCC;
    transform: scale(1.08);
    text-shadow: 0 0 10px rgba(6, 255, 204, 0.6);
}

.f999-content-item:hover::before {
    width: 80%;
}

.f999-accent {
    color: #06FFCC;
    font-weight: 900;
    font-size: 18px;
    text-shadow: 0 0 15px rgba(6, 255, 204, 0.9), 0 0 25px rgba(4, 83, 74, 0.5);
    animation: f999AccentPulse 2.5s ease-in-out infinite;
    display: inline-block;
}

@keyframes f999AccentPulse {
    0%, 100% {
        text-shadow: 0 0 15px rgba(6, 255, 204, 0.9);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 25px rgba(6, 255, 204, 1), 0 0 35px rgba(4, 83, 74, 0.7), 0 0 45px rgba(6, 255, 204, 0.5);
        transform: scale(1.05);
    }
}

.f999-cta-zone {
    flex-shrink: 0;
    width: 70px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #04534A 0%, #06FFCC 100%);
    border-left: 3px solid #06FFCC;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.f999-cta-zone::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(6, 255, 204, 0.3) 50%, transparent 70%);
    animation: f999CtaShine 3s linear infinite;
}

@keyframes f999CtaShine {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.f999-cta-zone:hover {
    background: linear-gradient(135deg, #06FFCC 0%, #04B89D 100%);
    box-shadow: 0 0 25px rgba(6, 255, 204, 0.7), inset 0 0 20px rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.f999-mobile-icon {
    width: 38px;
    height: 38px;
    background: #00302B;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 2px solid #06FFCC;
    transition: all 0.4s ease;
    z-index: 1;
    box-shadow: 0 0 10px rgba(6, 255, 204, 0.5);
}

.f999-cta-zone:hover .f999-mobile-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 0 20px rgba(6, 255, 204, 0.8), inset 0 0 10px rgba(6, 255, 204, 0.3);
    background: linear-gradient(135deg, #00302B 0%, #04534A 100%);
}

@media (max-width: 768px) {
    .f999-main-container {
        height: 60px;
    }
    
    .f999-logo-zone {
        padding: 0 18px;
        min-width: 160px;
    }
    
    .f999-brand-title {
        font-size: 26px;
        letter-spacing: 2px;
    }
    
    .f999-icon-animated {
        width: 28px;
        height: 28px;
        font-size: 15px;
        margin-right: 10px;
    }
    
    .f999-cta-zone {
        width: 60px;
    }
    
    .f999-mobile-icon {
        width: 32px;
        height: 32px;
        font-size: 17px;
    }
    
    .f999-content-item {
        padding: 0 60px;
        font-size: 14px;
    }
    
    .f999-accent {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .f999-main-container {
        height: 55px;
    }
    
    .f999-logo-zone {
        padding: 0 12px;
        min-width: 130px;
    }
    
    .f999-brand-title {
        font-size: 22px;
        letter-spacing: 1.5px;
    }
    
    .f999-icon-animated {
        width: 24px;
        height: 24px;
        font-size: 13px;
        margin-right: 8px;
    }
    
    .f999-cta-zone {
        width: 55px;
    }
    
    .f999-mobile-icon {
        width: 28px;
        height: 28px;
        font-size: 15px;
    }
    
    .f999-content-item {
        padding: 0 40px;
        font-size: 13px;
    }
    
    .f999-accent {
        font-size: 15px;
    }
}






