.floating-navbar {
    position: fixed;
    top: calc(20px + env(safe-area-inset-top, 0));
    right: 20px;
    z-index: 1000;
}

/* Circle Button */
.menu-circle {
    background: #1e293b;
    color: #f1f5f9;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 24px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Menu Content (Centered) */
.menu-content {
    display: none;
    position: fixed;
    top: calc(20px + env(safe-area-inset-top, 0));
    left: 50%;
    transform: translateX(-50%);
    background: #1e293b;
    padding: 16px 24px;
    border-radius: 16px;
    display: flex;
    gap: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Icon links */
.menu-content a {
    color: #f1f5f9;
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.2s;
}

.menu-content a:hover {
    transform: scale(1.2);
}

/* Active: fade out circle, fade in menu */
.floating-navbar.active .menu-circle {
    opacity: 0;
    pointer-events: none;
}

.floating-navbar.active .menu-content {
    opacity: 1;
    pointer-events: auto;
}