/* --- TOP RIGHT MENU --- */
#top-right-menu {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 15px;
}

.menu-btn {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(13, 17, 23, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.541);
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.menu-btn svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
    transition: transform 0.4s ease;
}

.menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.settings-btn:hover svg {
    transform: rotate(90deg);
}

.profile-btn:hover svg {
    transform: scale(1.1);
}

.register-btn:hover svg {
    transform: translateY(-2px) scale(1.1);
}