/* ==========================================
   FLOATING NAVIGATION WIDGET
   ========================================== */
.floating-nav {
    position: fixed;
    top: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #111114;
    border: 1px solid #1F1F23;
    border-radius: 24px;
    padding: 10px 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.nav-container:hover {
    padding: 10px 20px;
    gap: 24px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #B3B3B3;
    text-decoration: none;
    transition: color 0.2s ease;
    position: relative;
}

.nav-item svg {
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.nav-item:hover {
    color: var(--text-primary);
}

.nav-label {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    width: 0;
    overflow: hidden;
    transition: opacity 0.25s ease, width 0.25s ease;
}

.nav-container:hover .nav-label {
    opacity: 1;
    width: auto;
}
