.imagoliz-banner-wrapper {
    width: 100%;
    background: #1D212D;
    border-radius: 0;
    overflow: hidden;
    border-bottom: 3px solid #00D9FF;
    max-width: 1200px;
    margin: 2rem auto;
}

.imagoliz-main-container {
    display: flex;
    align-items: center;
    height: 70px;
    background: #1D212D;
}

.imagoliz-brand-zone {
    flex-shrink: 0;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 28px;
    background: linear-gradient(135deg, #282B34 0%, #1D212D 100%);
    border-right: 3px solid #00D9FF;
    min-width: 200px;
}

.imagoliz-logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #00D9FF 0%, #00FFE0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 14px;
    animation: imagolizRotate 3s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.8);
}

@keyframes imagolizRotate {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        box-shadow: 0 0 20px rgba(0, 217, 255, 0.8);
    }
    50% {
        transform: rotate(180deg) scale(1.2);
        box-shadow: 0 0 35px rgba(0, 217, 255, 1);
    }
}

.imagoliz-brand-name {
    font-size: 28px;
    font-weight: 900;
    color: #00D9FF;
    text-shadow: 0 0 15px rgba(0, 217, 255, 0.6);
    letter-spacing: 3px;
}

.imagoliz-carousel-zone {
    flex: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
    background: #1D212D;
}

.imagoliz-movement-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
    animation: imagolizSlide 10s linear infinite;
}

.imagoliz-movement-wrapper:hover {
    animation-play-state: paused;
}

@keyframes imagolizSlide {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.imagoliz-items-list {
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding: 0;
    margin: 0;
}

.imagoliz-item {
    padding: 0 80px;
    font-size: 16px;
    font-weight: 600;
    color: #E8E8E8;
    cursor: pointer;
    transition: all 0.4s ease;
}

.imagoliz-item:hover {
    color: #00D9FF;
    transform: scale(1.08);
}

.imagoliz-emphasis {
    color: #00FFE0;
    font-weight: 900;
    text-shadow: 0 0 15px rgba(0, 255, 224, 0.9);
    animation: imagolizShine 2.5s ease-in-out infinite;
}

@keyframes imagolizShine {
    0%, 100% {
        text-shadow: 0 0 15px rgba(0, 255, 224, 0.9);
    }
    50% {
        text-shadow: 0 0 25px rgba(0, 255, 224, 1), 0 0 40px rgba(0, 217, 255, 0.8);
    }
}

.imagoliz-cta-zone {
    flex-shrink: 0;
    width: 70px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00D9FF 0%, #00FFE0 100%);
    border-left: 3px solid #00D9FF;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
}

.imagoliz-cta-zone:hover {
    background: linear-gradient(135deg, #00FFE0 0%, #00FFF0 100%);
    box-shadow: 0 0 25px rgba(0, 217, 255, 0.6);
}

.imagoliz-app-symbol {
    width: 38px;
    height: 38px;
    background: #282B34;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 2px solid #00D9FF;
    transition: all 0.4s ease;
}

.imagoliz-cta-zone:hover .imagoliz-app-symbol {
    transform: scale(1.15) rotate(15deg);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.7);
}

@media (max-width: 768px) {
    .imagoliz-main-container {
        height: 60px;
    }
    .imagoliz-brand-zone {
        padding: 0 18px;
        min-width: 150px;
    }
    .imagoliz-brand-name {
        font-size: 24px;
        letter-spacing: 2px;
    }
    .imagoliz-logo-icon {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    .imagoliz-cta-zone {
        width: 60px;
    }
    .imagoliz-item {
        padding: 0 60px;
        font-size: 14px;
    }
    .imagoliz-app-symbol {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
}