.ainna-investor-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 8px 16px;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(102, 126, 234, 0.35);
    font-size: 12px;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
}

.ainna-investor-bar.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.ainna-investor-bar-label {
    color: #94a3b8;
    font-weight: 600;
    margin-right: 4px;
}

.ainna-investor-bar a {
    color: #c7d2fe;
    text-decoration: none;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(102, 126, 234, 0.4);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.ainna-investor-bar a:hover {
    background: rgba(102, 126, 234, 0.25);
    color: #fff;
    border-color: #667eea;
}

.ainna-investor-bar-close {
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    padding: 0 4px;
    margin-left: 4px;
}

.ainna-investor-bar-close:hover {
    color: #fff;
}

@media (max-width: 640px) {
    .ainna-investor-bar {
        font-size: 11px;
        padding: 6px 12px;
        gap: 6px;
    }
    .ainna-investor-bar-label {
        width: 100%;
        text-align: center;
        margin-right: 0;
    }
}